-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorials.html
More file actions
82 lines (78 loc) · 3.23 KB
/
tutorials.html
File metadata and controls
82 lines (78 loc) · 3.23 KB
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
<!DOCTYPE html>
<!--
Plain-Academic by Vasilios Mavroudis
Released under the Simplified BSD License/FreeBSD (2-clause) License.
https://github.com/mavroudisv/plain-academic
-->
<html lang="en">
<head>
<title>Adam Zsolt Wagner</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.js"></script>
<link
href="https://fonts.googleapis.com/css?family=Oswald:700"
rel="stylesheet"
type="text/css"
/>
<style>
/* Custom CSS to override Bootstrap styles */
.list-item {
display: flex;
flex-direction: column; /* Display Colab and Slides links as columns */
align-items: flex-start; /* Align content to the left */
margin-bottom: 10px; /* Add spacing between list items */
}
/* Style for the Colab and Slides links */
.colab-link,
.slides-link {
margin-left: 10px; /* Add some spacing to the left of links */
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-inverse">
<div class="container">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="tutorials.html">Machine learning in maths</a></li>
<li><a href="teaching.html">Teaching</a></li>
</ul>
</div>
</nav>
<!-- Page Content -->
<div class="container">
<div class="row">
<!-- Entries Column -->
<!-- Main Image -->
<div style="margin-top:3%; text-align:justify;">
<h4>Tutorials for applying machine learning methods to maths problems</h4>
<ul>
<li class="list-item">
<span class="colab-link">Reinforcement learning: <a href="https://colab.research.google.com/drive/1lkGDEDy3pawHT1DKwXMrXOXjtlzO-Hiw?usp=sharing">Colab</a></span>
<span class="slides-link"><a href="Summer_school_Hausdorff_Day_1__RL (1).pdf">Slides</a></span>
</li>
<li class="list-item">
<span class="colab-link">Saliency analysis: <a href="https://colab.research.google.com/drive/1LL3dUySatJcXqsa4QDm3TJNDcu_ju46F?usp=sharing">Colab</a></span>
<span class="slides-link"><a href="Summer_school_Hausdorff_Day_2__Saliency_analysis.pdf">Slides</a></span>
</li>
<li class="list-item">
<span class="colab-link">Transformers and Makemore:</span>
<span class="slides-link"><a href="Summer_school_Hausdorff_Day_3__Transformers_and_Makemore.pdf">Slides</a></span>
</li>
</ul>
</div>
</div>
</div>
<!-- /.container -->
<!-- Other people may like it too! -->
<a style="color:#b5bec9;font-size:0.8em; float:right;" href="https://github.com/mavroudisv/plain-academic">Plain Academic</a>
</body>
</html>