-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
executable file
·213 lines (205 loc) · 8.47 KB
/
project.html
File metadata and controls
executable file
·213 lines (205 loc) · 8.47 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zimo Li - Project</title>
<link rel="apple-touch-icon" sizes="180x180" href="Images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="Images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="Images/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<style>
body, html {
height: 100%;
margin: 0;
padding: 0;
font-family: 'Times New Roman', Times, serif;
background: #f5f6fa;
}
.header-img {
width: 100vw;
height: 30vh;
object-fit: cover;
display: block;
position: relative;
z-index: 1;
/* Optional: fade out bottom */
mask-image: linear-gradient(to bottom, black 0%, black 60%, rgba(0,0,0,0.8) 75%, rgba(0,0,0,0.4) 90%, transparent 100%);
-webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, rgba(0,0,0,0.8) 75%, rgba(0,0,0,0.4) 90%, transparent 100%);
}
footer {
position: relative;
width: 100%;
height: 70vh;
}
.footer-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
position: absolute;
z-index: 1;
/* Optional: fade in top */
mask-image: linear-gradient(to top, black 0%, black 60%, rgba(0,0,0,0.8) 75%, rgba(0,0,0,0.4) 90%, transparent 100%);
-webkit-mask-image: linear-gradient(to top, black 0%, black 60%, rgba(0,0,0,0.8) 75%, rgba(0,0,0,0.4) 90%, transparent 100%);
}
.footer-text {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
z-index: 2;
text-align: center;
color: white;
text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
font-family: 'Times New Roman', 'SimSun', '宋体', serif; /* Added Chinese fonts */
}
.footer-location {
font-size: 1rem;
margin-bottom: 0.5rem;
font-style: italic;
}
.footer-copyright {
font-size: 1rem;
margin: 0;
}
.container {
max-width: 900px;
margin: 2rem auto;
padding: 0 1rem;
min-height: 40vh;
}
.item {
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.08);
margin-bottom: 2rem;
padding: 1.5rem 2rem;
font-size: 1.1rem;
}
/* Slide-out menu */
.menu-hover-zone {
position: fixed;
left: 0;
top: 0;
width: 20px;
height: 100vh;
z-index: 201;
}
.side-menu {
position: fixed;
top: 0;
left: -180px;
width: 180px;
height: 100%;
background: #34495e;
color: white;
transition: left 0.3s;
z-index: 200;
padding-top: 4rem;
}
.menu-hover-zone:hover + .side-menu,
.side-menu:hover,
.side-menu:focus-within {
left: 0;
}
.side-menu ul {
list-style: none;
padding: 0;
}
.side-menu li {
margin: 2rem 0;
text-align: left;
padding-left: 2rem;
}
.side-menu a {
color: white;
text-decoration: none;
font-size: 1.1rem;
}
.pdf-link {
color: #3498db;
text-decoration: none;
margin-left: 0.5rem;
}
.pdf-link:hover {
text-decoration: underline;
}
.code-link {
color: #2ecc71; /* Different color from PDF links */
text-decoration: none;
margin-left: 0.5rem;
}
.code-link:hover {
text-decoration: underline;
}
.people-link {
color: #0317cd; /* Different color from PDF links */
text-decoration: none;
padding: 0;
display: inline;
}
.people-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="menu-hover-zone"></div>
<nav class="side-menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="publication.html">Publication</a></li>
<li><a href="project.html">Project</a></li>
<li><a href="https://drive.google.com/file/d/1EtkrN1gej3OBi_fNIITldcqkcllkpjme/view">CV</a></li>
<li><a href="others.html">Others</a></li>
</ul>
</nav>
<header>
<img src="Images/header.jpg" alt="Header scene" class="header-img">
</header>
<main>
<div class="container">
<section id="research">
<h2>Research Projects</h2>
<div class="item">
<h3>Neural Representation for Temporal Dynamics in Auditory Cortex during Gap Detection: A Population Analysis</h3>
<p><em>September 2024 - Present</em></p>
<p>Supervised by Professor Maneesh Sahani, Gatsby Computational Neuroscience Unit and Professor Jennifer Linden, UCL Ear Institute</p>
<p><a href="https://github.com/zimoli02/gap_in_noise.git" class="code-link" target="_blank">[Code]</a></p>
</div>
<div class="item">
<h3>Statistical Analysis on Naturalistic Long-Duration Mouse Foraging Data</h3>
<p><em>September 2023 - Present</em></p>
<p>Supervised by Professor Maneesh Sahani and Dr Joaquin Rapela, Gatsby Computational Neuroscience Unit</p>
<p>Applied advanced statistical methods to characterize mice naturalistic behavior in continual experiments lasting several days. Used linear dynamical systems to infer mice kinematics from position observations, hidden Markov models to infer discrete states from kinematics and other measurements, and linear regression to relate state occupancy to behavioral events. Found that mice kinematics were substantially more active in the first experimental day, repeatable sequences of behavioral states across sessions and mice, and that foraging events were predictable from the inferred states. Assisting with monitoring mice foraging experiments.
<a href="https://github.com/zimoli02/2023-2024-SURFiN-Foraging-Project.git" class="code-link" target="_blank">[Code]</a>
</p>
</div>
<div class="item">
<h3>Short-Term Synaptic Plasticity in Cerebellar Information Processing</h3>
<p><em>October 2023 - March 2024</em></p>
<p>Supervised by Professor R. Angus Silver, Silver Lab</p>
<p>Conducted a 7500-word literature review on the mechanism and functional roles of short-term synaptic plasticity in the cerebellar cortical circuit.
<a href="https://drive.google.com/file/d/1LhvwRPfzm7FRamoqRhpogMHibRawI5V1/view?usp=drive_link" class="pdf-link" target="_blank">[PDF]</a>
</p>
</div>
<div class="item">
<h3>Mouse V1 Neuron Patterns in Different Luminance Levels</h3>
<p><em>May 2022 - October 2023</em></p>
<p>Supervised by Professor Kenneth Harris and Dr Maxwell Shinn, Harris/Carandini Lab</p>
<p>Performed dimensionality analysis on 2-photon calcium imaging neural data to explore the possible factors of mouse V1 neuron pattern distinction in different light conditions. Proposed a dynamical systems model of mice cortical neural circuit to predict high-dimensional neuronal activities during locomotion. The influence of ambient light on the cor- relation between locomotion and neural activities can be simulated by altering the dynamics of the modelled cortical neural network.
</p>
</div>
</section>
</div>
</main>
<footer>
<img src="Images/footer.jpg" class="footer-img">
<div class="footer-text">
<div class="footer-location">"云横秦岭家何在" (唐)韩愈</div>
<p class="footer-copyright">© March 2nd 2026</p>
</div>
</footer>
</body>
</html>