-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtalks.html
108 lines (103 loc) · 4.91 KB
/
talks.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Talks - Roberto Boghetti</title>
<meta name="description" content="Upcoming and past talks and presentations by Roberto Boghetti.">
<!-- Preload Fonts -->
<!-- <link rel="preload" href="static/fonts/poppins-v22-latin-regular.woff2" as="font" type="font/woff2" crossorigin="anonymous"> -->
<!-- <link rel="preload" href="static/fonts/poppins-v22-latin-300.woff2" as="font" type="font/woff2" crossorigin="anonymous"> -->
<!-- <link rel="preload" href="static/fonts/outfit-v11-latin-regular.woff2" as="font" type="font/woff2" crossorigin="anonymous"> -->
<!-- <link rel="preload" href="static/fonts/outfit-v11-latin-600.woff2" as="font" type="font/woff2" crossorigin="anonymous"> -->
<!-- OG Meta Tags -->
<meta property="og:title" content="Talks | Roberto Boghetti">
<meta property="og:description" content="Upcoming and past talks and presentations by Roberto Boghetti.">
<meta property="og:type" content="website">
<!-- <meta property="og:url" content="YOUR_WEBSITE_URL_HERE"> --> <!-- TODO: Replace with actual URL when online -->
<!-- <meta property="og:image" content="YOUR_IMAGE_URL_HERE"> --> <!-- TODO: Add a preview image URL if you have time -->
<meta name="twitter:card" content="summary">
<!-- Link to Stylesheet -->
<link rel="stylesheet" href="css/style.css">
<!-- Favicons (see https://stackoverflow.com/q/48956465/)-->
<link rel="icon" type="image/png" href="static/icons/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="static/icons/favicon.svg" />
<link rel="shortcut icon" href="static/icons/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="static/icons/apple-touch-icon.png" />
<link rel="manifest" href="static/icons/site.webmanifest" />
<!-- For Fallback in Case webmanifest fails to load -->
<meta name="msapplication-TileColor" content="#2c2c2c">
<meta name="theme-color" content="#2c2c2c">
</head>
<body>
<nav>
<div class="container nav-container">
<button class="nav-dropdown-toggle" aria-label="Toggle navigation" aria-expanded="false">
<span class="nav-arrow"></span>
</button>
<div class="nav-links">
<ul>
<li><a href="index.html">About</a></li>
<li><a href="blog.html">Thoughts</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="talks.html" class="active">Talks</a></li>
<li><a href="vitae.html">Vitae</a></li>
</ul>
</div>
</div>
</nav>
<main>
<div class="container">
<h1>Talks & Presentations</h1>
<section class="talks-list">
<h2>Upcoming</h2>
<ul>
<li>
<strong>24 April 2025</strong>
Graph Neural Networks: Successes and Challenges in the Analysis of Energy Grids
<p><em>PyData Valais</em><span class="talk-location"> - Idiap, Martigny, Switzerland</span>.</p>
<p>[<a href="https://www.meetup.com/pydata-valais/events/306641732/" target="_blank" rel="noopener noreferrer">URL</a>]</p>
</li>
</ul>
</section>
<section class="talks-list">
<h2>Past</h2>
<ul>
<li>
<strong>17 April 2025</strong>
Graph Neural Networks: Intuition, Misconceptions, and Real-World Challenges in Energy Systems
<p><em>Chiesi</em><span class="talk-location"> - Parma, Italy</span>.</p>
</li>
<li>
<strong>05 September 2023</strong>
Economics and Management of Innovation and Technological Change: Lessons Learnt from an Eurotech Course
<p><em>Idiap Tuesday Afternoon Meeting Series</em><span class="talk-location"> - Idiap, Martigny, Switzerland</span>.</p>
</li>
<li>
<strong>14 March 2023</strong>
Graph cycles and how they can keep you warm next winter
<p><em>Idiap Tuesday Afternoon Meeting Series</em><span class="talk-location"> - Idiap, Martigny, Switzerland</span>.</p>
</li>
<li>
<strong>15 November 2021</strong>
Simulating District Heating Networks’ hydraulics with residual physics neural networks
<p><em>Valais/Wallis AI Workshop 7th edition</em><span class="talk-location"> - Idiap, Martigny, Switzerland</span>.</p>
</li>
<li>
<strong>07 May 2019</strong>
Urban Morphology, Energy Needs and Artificial Intelligence
<p><em>Artificial Intelligence & Energy Symposium</em><span class="talk-location"> - Idiap, Martigny, Switzerland</span>.</p>
</li>
</ul>
</section>
</div>
</main>
<footer>
<div class="container">
© <span id="current-year"></span> Roberto Boghetti | Powered by coffee ☕.
</div>
</footer>
<script src="js/footer.js"></script> <!-- Footer Year -->
<script src="js/nav-dropdown.js" defer></script> <!-- Dropdown Navigation Toggle -->
</body>
</html>