forked from cplmakerlab/simple-website-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (85 loc) · 4.71 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
<!doctype html>
<html>
<head>
<style>
.profile-image {
float: right;
margin-left: 20px;
width: 150px;
height: auto;
}
</style>
<!-- Page setup -->
<meta charset="utf-8">
<title>Jitao Li</title>
<meta name="description" content="A brief description of your site for search engines">
<meta name="author" content="Information about the author here">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
<link rel="icon" type="image/png" href="favicon.png">
<!-- Stylesheets -->
<!-- Reset default styles and add support for google fonts -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" rel="stylesheet" type="text/css" />
<link href="http://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css" />
<!-- Custom styles -->
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<!-- Want to add Bootstrap? -->
<!-- Visit: https://getbootstrap.com/docs/4.3/getting-started/introduction/ -->
</head>
<body>
<header id="header">
<!-- <img src="logo.jpg"> -->
<img src="profile_image.jpg" alt="Profile Photo" class="profile-image">
<h1>Jitao Li</h1>
<h3>University of Illinois at Urbana-Champaign</h3>
<!-- Menu link fragment #id should match a div id. Example: <a href="#home"> links to <div id="home"></div> -->
<ul class="main-menu">
<li><a href="#about">about</a></li>
<li><a href="#contact">contact</a></li>
<li><a href="JitaoLiCV.pdf" target="_blank" style="color: #00BFFF; text-decoration: underline;">CV</a></li>
</ul>
</header>
<div id="container">
<div class="inner">
<div id="content">
<div id="about" class="content-region hide">
<h2>About</h2>
<p>
I’m a junior undergraduate student majoring in Computer Engineering, currently studying at University of Illinois at Urbana-Champaign.
I spent my first two undergraduate years at Zhejiang University, China. I have taken courses on Data Structures, Operating System, Data Mining,
Signal Processing, etc., and have a GPA of 3.96.
<a href="transcript_unofficial.pdf" target="_blank" style="color: #00BFFF; text-decoration: underline;">Here's my unofficial transcript</a>.
<br><br>
From June to July in 2022, I worked in D3 laboratory at Zhejiang University as a summer intern and led the summer intern research team.
My team constructed a semantic network based on the bionic knowledge we extracted from AskNature, an online Bionics encyclopedia.
My primary responsibility was fine-tuning large language models and front-end visualization of the network. The project won Best Achievement
Award in the summer intern symposium. From June to July in 2023, I was a summer research intern in Laboratory of Visual Intelligence and Pattern Analysis(VIPA),
Zhejiang University. Our team focused on the task of Action Quality Assessment(AQA), constructing a model that extracted features of short sport video clips across seven
categories and output an accurate score according to the athlete’s execution. My main responsibility was noise reduction of the video clips and optimization of
feature extraction. Our research resulted in an EI conference paper, where I contributed as a co-first author.
<a href="https://doi.org/10.1088/1742-6596/2632/1/012027" target="_blank" style="color: #00BFFF; text-decoration: underline;">It can be found here</a>.
My research interest lies in pattern recognition and video processing, but at this point I’m actively exploring other directions as well.
<br><br>
I like playing basketball and pingpong in my spare time. I also like to make aerial movies and vlogs.
</p>
</div>
<div id="contact" class="content-region hide">
<h2>Contact</h2>
<p>
Email: [email protected]
<br>
Phone: 217-979-3861
</p>
</div>
</div>
</div>
</div>
<!-- <footer>
Footer region
</footer>
-->
<!-- Load additional JS scripts here -->
<script type="text/javascript" src="script.js"></script>
</body>
</html>