generated from fastai/fastpages
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathindex.html
111 lines (91 loc) · 3.2 KB
/
index.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
109
110
111
---
layout: home
search_exclude: true
image: images/logo.png
---
<style type='text/css'>
.clearfix::after {
content: "";
clear: both;
display: table;
}
UL.people-list {
list-style: none;
margin-left: 0px;
}
LI.person-card {
width: 200px;
float: left;
margin: 10px;
text-align: center;
height: 340px;
}
LI.person-card P {
margin: 0.5rem 0px !important;
}
LI.person-card > img {
width: 100px;
height: 100px;
border-radius: 50%;
border: 5px solid #eee;
text-align: center;
}
</style>
# Scientific Machine Learning at University of Leeds
Hi!
Welcome to the website for people interested in scientific machine learning
(SciML) at Leeds (SciML is the discipline of combining machine learning with
scientific computing see e.g. <a href="https://sciml.ai/roadmap/">sciml.ai</a>
for an overview). This website serves to organise our work and allow others to
join us.
Click here to subscribe to our newsletter: <a href="https://forms.office.com/e/jXNYgRcAfv"
class="btn btn-primary">SUBSCRIBE!</a>
If you're based at Leeds and would like to join:
* you can simply make a
pull-request to add yourself to this website:
[people.md](https://github.com/sciml-leeds/sciml-leeds.github.io/tree/master/_data/people.yaml)
* or instead of a pull request, use the automated form [here](https://sciml-profileadder.streamlit.app)
We meet the first Friday of every month at 11am UK/local time in our home in LIDA (Leeds
Institute for Data Analytics), Worsley Building, 11th Floor, room 11.87.
([.ics-file download](assets/SciML_community_monthly_coffee-chat.ics) to add
the event to your calendar). We also organise [seminars and workshops](/events), as well as send out a
<a href="https://forms.office.com/e/jXNYgRcAfv">monthly newsletter</a>.
View the <a href="https://us10.campaign-archive.com/home/?u=1e7160a87211972265ca1180b&id=79fe3dd86f">SciML newsletter archives here</a>.
## Training Resources
View <a href="https://cemac.github.io/LIFD_ENV_ML_NOTEBOOKS/">LIFD Jupyter Notebooks Tutorials on various machine learning topics here</a>.
## People
{% assign image_files = site.static_files | where: "image", true %}
{% for myimage in image_files %}
{% if myimage.basename == "portrait_placeholder" %}
{% assign image_path_placeholder = myimage.path %}
{% endif %}
{% endfor %}
<ul class='people-list'>
{% for item in site.data.people %}
<li class='person-card'>
{% assign image_path = image_path_placeholder %}
{% for myimage in image_files %}
{% assign basename = item.name | split: " " | join: "" | downcase %}
{% if myimage.basename == basename %}
{% assign image_path = myimage.path %}
{% break %}
{% endif %}
{% endfor %}
<img src='{{ image_path }}'/>
<p>{{item.name}}</p>
{% if item.social.website %}
<a href="{{ item.social.website }}"><i class="fas fa-globe"></i></a>
{% endif %}
{% if item.social.github %}
<a href="https://github.com/{{ item.social.github }}"><i class="fab fa-github"></i></a>
{% endif %}
{% if item.social.twitter %}
<a href="https://twitter.com/{{ item.social.twitter }}"><i class="fab fa-twitter"></i></a>
{% endif %}
<p>{{ item.techniques | join: ", "}}</p>
<p>{{ item.applications | join: ", "}}</p>
</li>
{% endfor %}
</ul>
<div class='clearfix'></div>
# Posts