-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (74 loc) · 3.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Zhe Cao - Academic Profile</title>
<style>
body { font-family: 'Segoe UI', sans-serif; line-height: 1.6; max-width: 800px; margin: 40px auto; }
.header { border-bottom: 2px solid #333; padding-bottom: 15px; }
.section { margin: 25px 0; }
h2 { color: #2c3e50; margin-bottom: 12px; }
ul { padding-left: 20px; }
a { color: #3498db; text-decoration: none; }
</style>
</head>
<body>
<div class="header">
<h1>Zhe Cao</h1>
<p>Undergraduate<br>
Department of Computer Science and Technology<br>
Nanjing University</p>
</div>
<div class="section">
<h2>Academic Profile</h2>
<p>As a sophomore at Nanjing University, I am pursuing rigorous studies in computer science disciplines including data structure, introduction to computer system, machine learning and so on. My academic journey is marked by early engagement in research through:</p>
<ul>
<li><strong>Major Innovation Project</strong>: Participating in Retrieval Augmented Generation (RAG) for LLMs</li>
<li><strong>Research Practice</strong>: Conducting systematic investigations into Research on safe alignment of large models based on agents under Prof. Huo Jing</li>
</ul>
</div>
<div class="section">
<h2>Interests</h2>
<ul>
<li>Multimodel LLM</li>
<li>Natural Language Process based on deep neural network</li>
<li>Reinforcement Learning for LLM</li>
</ul>
</div>
<div class="section">
<h2>Projects</h2>
<ul>
<li><strong>Sentiment Analysis on IMDB</strong>: A project that uses machine learning algorithm to perform sentiment analysis on the IMDB dataset. By using cross validation method, we get the models classification acc. The naïve bayes model
could access 85.5% and SVM model could get 88% acc by contrast. They both have a great performance in the sentiment analysis task.
</li>
<li><strong>ICS PA</strong> (course project): A project that uses C to implement a simple computer system. This project includes several components:
<ul>
<li><strong>NJU Emulator</strong>: An emulator for the NJU computer system.</li>
<li><strong>AbstractMachine</strong>: A running time environment.</li>
<li><strong>NanOS-lite</strong>: A lightweight operating system designed for the abstract machine.</li>
<li><strong>Navy-apps</strong>: A set of applications developed to run on NanOS-lite.</li>
</ul>
</li>
</ul>
</div>
<div class="section">
<h2>Projects</h2>
<ul>
<li><strong>Baidu Galaxy Cup Artificial Intelligence Creative Competition</strong>:
</ul>
</div>
<div class="section">
<h2>Technical Proficiencies</h2>
<ul>
<li><strong>Languages</strong>: Python (PyTorch), C, C++, Java, SQL</li>
<li><strong>ML Frameworks</strong>: HuggingFace Transformers, </li>
<li><strong>Tools</strong>: Docker, Git, Latex, Linux</li>
</ul>
</div>
<div class="section">
<h2>Contact</h2>
<p>Email: <a href="mailto:[email protected]">[email protected]</a><br>
GitHub: <a href="[Your GitHub URL]">@ZheCao-NJU</a><br>
</div>
</body>
</html>