-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (104 loc) · 3.05 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="展示我的学术成果和研究方向">
<title>个人学术主页</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background: #0073e6;
color: #fff;
padding: 1rem 0;
text-align: center;
}
nav {
background: #333;
color: #fff;
padding: 0.5rem;
text-align: center;
}
nav a {
color: #fff;
margin: 0 1rem;
text-decoration: none;
}
nav a:hover {
text-decoration: underline;
}
section {
max-width: 800px;
margin: 2rem auto;
padding: 1rem;
}
h2 {
color: #0073e6;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 1rem 0;
margin-top: 2rem;
}
.paper {
margin-bottom: 1rem;
}
.paper a {
color: #0073e6;
text-decoration: none;
}
.paper a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>个人学术主页</h1>
<p>欢迎访问我的学术主页,展示我的研究方向和成果!</p>
</header>
<nav>
<a href="#about">关于我</a>
<a href="#research">研究方向</a>
<a href="#publications">学术成果</a>
<a href="#contact">联系方式</a>
</nav>
<section id="about">
<h2>关于我</h2>
<p>我是浙江大学的研究生,研究方向包括图文、视频多模态大模型等。</p>
</section>
<section id="research">
<h2>研究方向</h2>
<ul>
<li>高分辨率图文多模态大模型</li>
<li>长时间视频多模态大模型</li>
</ul>
</section>
<section id="publications">
<h2>学术成果</h2>
<div class="paper">
<strong>Agents: An Open-source Framework for Autonomous Language Agents</strong><br>
<a href="https://arxiv.org/abs/2309.07870" target="_blank">查看论文</a>
</div>
<div class="paper">
<strong>NTIRE 2024 Quality Assessment of AI-Generated Content Challenge</strong><br>
<a href="https://arxiv.org/abs/2404.16687" target="_blank">查看论文</a>
</div>
</section>
<section id="contact">
<h2>联系方式</h2>
<p>邮箱: <a href="mailto:[email protected]">[email protected]</a></p>
<p>GitHub: <a href="https://github.com/shidingz" target="_blank">https://github.com/shidingz</a></p>
</section>
<footer>
<p>© 2024 朱诗定的学术主页</p>
</footer>
</body>
</html>