Skip to content

Commit 1d99874

Browse files
committed
first update
1 parent 43b5674 commit 1d99874

3 files changed

Lines changed: 135 additions & 1 deletion

File tree

css/style.css

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,88 @@
11
:root {
22
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
3+
font-size: 16px;
4+
}
5+
6+
body {
7+
margin: 0;
8+
width: 90%;
9+
max-width: 880px;
10+
margin: 50px auto;
11+
}
12+
13+
header {
14+
display: flex;
15+
height: auto;
16+
justify-content: space-between;
17+
margin: 40px auto;
18+
}
19+
20+
header img {
21+
margin: 0;
22+
height: 200px;
23+
}
24+
25+
header p.actions {
26+
margin: 0;
27+
align-self: center;
28+
font-size: 1.5em;
29+
}
30+
31+
header p.actions button {
32+
margin-right: 10px;
33+
padding: 6px 8px;
34+
background-color: white;
35+
border-radius: 4px;
36+
border: 2px solid #3367d1;
37+
color: #3367d1;
38+
}
39+
40+
header p.actions button > a {
41+
color: #3367d1;
42+
text-decoration: none;
43+
}
44+
45+
header p.actions button:hover {
46+
background-color: #3367d1;
47+
}
48+
49+
header p.actions button:hover > a {
50+
color: white;
51+
}
52+
53+
ul.pub a {
54+
color: #3367d1;
55+
}
56+
57+
/* common overrides */
58+
h2 {
59+
margin: 30px 0 10px 0;
60+
}
61+
62+
a {
63+
color: black;
64+
text-decoration: none;
65+
font-weight: bold;
66+
}
67+
68+
a:hover {
69+
color: #3367d1;
70+
text-decoration: underline;
71+
}
72+
73+
li {
74+
margin-bottom: 10px;
75+
}
76+
77+
@media screen and (max-width: 600px) {
78+
header {
79+
flex-direction: column;
80+
height: auto;
81+
}
82+
83+
header img {
84+
height: auto;
85+
max-height: 300px;
86+
margin: 20px auto 20px 0;
87+
}
388
}

imgs/main.png

4.02 MB
Loading

index.html

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,55 @@
88
<link rel="stylesheet" href="css/style.css">
99
</head>
1010
<body>
11-
<h1 class="name">Wenjie Zhang 张文杰</h1>
11+
<h1 class="name">Wenjie Zhang ( 张文杰 )</h1>
12+
<header>
13+
<div class="info">
14+
<h3>Ph.D. Student (from Autumn 2023)</h3>
15+
<p>
16+
<a href="https://www.jiangnan.edu.cn" target="_blank">Jiangnan University</a>
17+
, Institute of advanced Technology <br>
18+
Address: 1800 Lihu Avenue, Wuxi, Jiangsu, China
19+
</p>
20+
<!-- <p><a href="https://www.jiangnan.edu.cn" target="_blank">江南大学</a>, 先进技术研究院</p> -->
21+
<p>Email: zhangwenjie@stu.jiangnan.edu.cn</p>
22+
<p class="actions">
23+
<button><a href="https://github.com/xerrors">View My GitHub</a></button>
24+
<button><a href="https://scholar.google.com.hk/citations?user=ZwL8FnQAAAAJ">View My Google Scholar</a></button>
25+
</p>
26+
</div>
27+
<img src="imgs/main.png" alt="main image">
28+
</header>
29+
30+
<main>
31+
<h2>Short Bio</h2>
32+
<p>
33+
I am currently working toward the Ph.D degree in computer science and technology with Jiangnan University, Wuxi, China.
34+
My research interests include Latural Language Processing (NLP), Machine Learning (ML), and Entity Relation Rxtraction (ERE).
35+
</p>
36+
<p>
37+
I'm currently learning Large Language Models (LLMs) and Information Extraction (IE)
38+
</p>
39+
40+
<h2>Publications</h2>
41+
<ul class="pub">
42+
<li>
43+
<strong>Zhang W</strong>, Song X, Feng Z, et al.
44+
LabelPrompt: Effective Prompt-based Learning for Relation Classification[J]. arXiv preprint arXiv:2302.08068, 2023.
45+
[<a href="https://arxiv.org/abs/2302.08068" target="_blank">abstract</a>]
46+
[<a href="https://arxiv.org/pdf/2302.08068" target="_blank">pdf</a>]
47+
</li>
48+
<li>
49+
Thinking about what to do next.
50+
</li>
51+
</ul>
52+
53+
<h2>Awards</h2>
54+
<ul class="pub">
55+
<li>
56+
Currently empty. But I will fill it soon.
57+
</li>
58+
</ul>
59+
60+
</main>
1261
</body>
1362
</html>

0 commit comments

Comments
 (0)