forked from dmidk/sciml-dmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (87 loc) · 2.88 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
---
layout: home
search_exclude: true
image: images/logo.png
---
<script src="https://cdnjs.cloudflare.com/ajax/libs/mermaid/10.2.3/mermaid.min.js" integrity="sha512-M4zmdILgXOwrBEVfpVqdO/jC3BJZQzlXHeu967v41/QoT60sESWSLbi7YwntTbYC0ZjewfTbvXO8iKj7amvQow==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<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 DMI
Hi!
Welcome to the website for people interested in scientific machine learning
(SciML) at the Danish Meteorological Institute (DMI) - 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.
If you're based at DMI and would like to join you can simply make a
pull-request to add yourself to this website:
[people.md](https://github.com/dmidk/sciml-dmi.github.io/tree/master/_data/people.yaml)
We meet the **first Monday of every month** (think "ML Mondays") at 11am local time at DMI - everyone is welcome!
## 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 | relative_url }}'/>
<p>{{item.name}}</p>
{% if item.email %}
<a href="mailto://{{ item.email }}"><i class="fas fa-envelope"></i></a>
{% endif %}
{% 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.mastodon %}
<a href="https://{{ item.social.mastodon }}"><i class="fab fa-mastodon"></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