-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
79 lines (75 loc) · 3.13 KB
/
about.html
File metadata and controls
79 lines (75 loc) · 3.13 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
---
layout: default
---
<div class="about-title">
<p>ABOUT US</p>
</div>
<div class="row">
<div class="col-xs-6">
<div class="about-lab-title">
<p>ZJU DAI</p>
</div>
<div class="about-lab-descr">
<p>
Distributed artificial intelligence laboratory (DAI LAB) focuss on Federated Learning and its related
topics, including model aggregation, Non-IID data modelling, data pricing, and data privacy. To build up
a more reliable, secure, and robust DAI ecosystem, we proposed Galaxy Leaning Framework and developed
Galaxy Federated Learning (GFL) framework.
</p>
</div>
</div>
<div class="col-xs-6">
<img style="margin-top: -45px;"
src="{{ site.data.cdn.cdn_url }}{{ "/assets/imgs/about/dai.jpg" | relative_url }}" />
</div>
</div>
<div class="about-team">
<div class="about-team-title">
<p>TEAM MEMBER</p>
</div>
<div class="about-team-member">
{%- for member_group in site.data.members -%}
<div class="row">
{%- for member in member_group -%}
<div class="col-xs-3">
<div class="about-member-card">
<div class="about-member-avatar">
<img src="{{ site.data.cdn.cdn_url }}{{ "/assets/imgs/avatars/" | append: member.pic | relative_url }}"/>
</div>
<p class="about-member-name">
{{ member.name }}
</p>
<p class="about-member-descr">
{{ member.position }}
</p>
<p class="about-member-email">
<span class="glyphicon glyphicon-envelope"></span> {{ member.email }}
</p>
</div>
</div>
{%- endfor -%}
</div>
{%- endfor -%}
</div>
</div>
<div class="about-team-intro">
<div class="row">
<div class="col-xs-6">
<div class="about-team-intro-name">
<p>计算社会科学计算中心</p>
<div></div>
</div>
<div class="about-team-intro-text">
<p>
计算社会科学计算中心依托于浙江大学公共管理学院,构建以数据、计算建模和领域应用三个方面为基础的计算社会科学服务平台。实验室配备高性能建模集群,多模态交互式大屏和副屏展示、VR实验、动作和视觉捕捉等硬件实验环境,并将其应用到智慧城市运行监测、医保数据建模、脱欧可视化分析等多个应用中。
</p>
</div>
</div>
<div class="col-xs-6">
<img src="{{ site.data.cdn.cdn_url }}{{ "/assets/imgs/about/css2.jpg" | relative_url }}"
style="width: 75%; float: right; border-radius: 20px;" />
<img src="{{ site.data.cdn.cdn_url }}{{ "/assets/imgs/about/css1.jpg" | relative_url }}"
style="width: 75%; margin-top: -150px; border-radius: 20px;" />
</div>
</div>
</div>