-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (95 loc) · 5.52 KB
/
Copy pathindex.html
File metadata and controls
112 lines (95 loc) · 5.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Michael Li</title>
<link rel="icon" type="image/x-icon" href="favicon.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,400;0,500;1,400&display=swap&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/main.css" />
<link rel="stylesheet" href="font.css" />
</head>
<body>
<main>
<header class="header">
<img class="photo" src="images/profilepicture.jpeg" alt="man with black hair smiling." />
<div class="header-text">
<h1>Michael Li</h1>
<p class="header-links">
<a href="mailto:[email protected]">email</a> ·
<a href="https://scholar.google.com/citations?user=JP1PmjYAAAAJ&hl=en" target="_blank" rel="noopener noreferrer">google scholar</a> ·
<a href="https://github.com/ml5885" target="_blank" rel="noopener noreferrer">github</a>
</p>
</div>
</header>
<p>
I'm an incoming PhD student in CS at Northeastern University advised by <a href="https://baulab.info/" target="_blank" rel="noopener noreferrer">David Bau</a> and <a href="https://www.byronwallace.com/" target="_blank" rel="noopener noreferrer">Byron Wallace</a>. I previously studied statistics and machine learning at CMU.
</p>
<p>
I'm interested in developing our scientific understanding of neural networks, mostly by studying the underlying mechanisms and representations they learn. More broadly, I'm excited by foundational questions about phenomena in deep learning, e.g. generalization, emergent capabilities, scaling laws, and so on.
</p>
<h2>News</h2>
<div class="news-box">
<div class="news-item">
<span class="news-date">Apr 2026</span>
<p class="news-body">Joining Northeastern University as a CS PhD student in Fall 2026!</p>
</div>
<div class="news-item">
<span class="news-date">Apr 2026</span>
<p class="news-body"><em>How Much Do Circuits Tell Us? Measuring the Consistency and Specificity of Language Model Circuits</em> won a best paper award (preliminary track) at the LTI Student Research Symposium.</p>
</div>
<div class="news-item">
<span class="news-date">Apr 2026</span>
<p class="news-body"><em>Model Internal Sleuthing</em> was accepted to ACL 2026 (Main).</p>
</div>
<div class="news-item">
<span class="news-date">Oct 2025</span>
<p class="news-body">Presented <em>BERTology in the Modern World</em> at the Interplay workshop at COLM 2025.</p>
</div>
</div>
<h2>Publications</h2>
<div class="pub">
<a href="https://arxiv.org/abs/2605.08348" target="_blank" rel="noopener noreferrer">How Much Do Circuits Tell Us? Measuring the Consistency and Specificity of Language Model Circuits</a><br />
Michael Li, Nishant Subramani.<br />
<em>Under review</em>, 2026.
</div>
<div class="pub">
<a href="https://aclanthology.org/2026.acl-long.720/" target="_blank" rel="noopener noreferrer">Model Internal Sleuthing: Finding Lexical Identity and Inflectional Features in Modern Language Models</a><br />
Michael Li, Nishant Subramani.<br />
<em>ACL</em>, 2026.
</div>
<div class="pub">
<a href="https://openreview.net/pdf?id=FqahMD2wY8" target="_blank" rel="noopener noreferrer">BERTology in the Modern World</a><br />
Michael Li, Nishant Subramani.<br />
<em>Workshop on the Interplay of Model Behavior and Model Internals, COLM</em>, 2025.
</div>
<div class="pub">
<a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC10208648/" target="_blank" rel="noopener noreferrer">Predicting the Daily Counts of COVID-19 Infection Using Temporal Convolutional Networks</a><br />
Michael Li, Fatemeh Esfahani, Li Xing, Xuekui Zhang.<br />
<em>Journal of Global Health</em>, 2023.
</div>
<!-- <h2>Experience</h2>
<div class="pub">
Software Engineering Intern, <a href="https://research.google/teams/global-networking/" target="_blank" rel="noopener noreferrer">Google</a>.<br />
Summer 2025.<br />
<em>Worked on self-supervised graph neural networks for anomaly detection.</em>
</div>
<div class="pub">
Machine Learning Intern, <a href="https://www.epirusinc.com/" target="_blank" rel="noopener noreferrer">Epirus</a>.<br />
Summer 2024.<br />
<em>Developed a real-time drone swarm simulator and trained RL agents with PPO to defend against them.</em>
</div>
<div class="pub">
Software Engineering Intern, <a href="https://www.beaverhealth.org/" target="_blank" rel="noopener noreferrer">Beaver Health</a>.<br />
Summer 2023.<br />
<em>Developed a generative AI dialogue framework using GPT-4 and TypeScript to digitize evidence-based health interventions for Alzheimer's patients.</em>
</div>
<div class="footer">
Previous versions of this site: <a href="index2.html">v1</a>, <a href="index_bauhaus.html">v2</a>, <a href="index_classical.html">v3</a>
</div> -->
</main>
<script src="toggle.js"></script>
</body>
</html>