-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresearch.html
More file actions
138 lines (131 loc) · 5.36 KB
/
Copy pathresearch.html
File metadata and controls
138 lines (131 loc) · 5.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Anthony Baez - Research</title>
<link rel="icon" type="image/jpeg" href="nn.jpg">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<style>
body {
font-family: Georgia, serif !important;
text-align: center;
background-color: #fff9f0;
font-size: 17px;
}
.navbar-nav .nav-item {
padding-left: 10px;
padding-right: 10px;
position: relative;
}
.navbar-nav .nav-item::after {
content: '';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 2px;
height: 28px;
background-color: #000000;
}
.navbar-nav .nav-item:first-child::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 2px;
height: 28px;
background-color: #000000;
}
.navbar-nav .nav-link {
font-size: 20px;
}
.navbar .container {
max-width: 750px;
}
a {
color: #0052a3;
text-decoration: underline;
}
a:hover {
color: #003d7a;
}
</style>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-white" style="border-bottom: 2px solid #000000;">
<div class="container">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link" href="index.html">About</a></li>
<li class="nav-item"><a class="nav-link active" href="research.html">Research</a></li>
</ul>
<img src="media_lab_logo.png" alt="MIT Media Lab" style="height: 44px; margin-left: auto;">
</div>
</div>
</nav>
<!-- Research Section -->
<div class="container mt-5" style="max-width: 750px;">
<div class="row">
<div class="col text-start">
<p>
<a href="https://arxiv.org/abs/2605.15455" target="_blank"><b>Multi-Turn Neural Transparency: Surfacing Neural Activations Improves User Calibration to LLM Behavioral Drift</b></a>
<br>
Sheer Karny*, <b>Anthony Baez</b>*, and Pat Pataranutaporn
<br>
<i>*Equal Contribution</i>
<br>
<i>Under Review</i>
</p>
<p>
<a href="https://arxiv.org/pdf/2511.00230" target="_blank"><b>Neural Transparency: Mechanistic Interpretability Interfaces for Anticipating Model Behaviors for Personalized AI</b></a>
<br>
Sheer Karny*, <b>Anthony Baez</b>*, and Pat Pataranutaporn
<br>
<i>*Equal Contribution</i>
<br>
<i>ACM Conference on Intelligent User Interfaces 2026</i>
<br>
<a href="https://github.com/mitmedialab/neural-transparency" target="_blank">Code</a>
</p>
<p>
<a href="https://arxiv.org/pdf/2511.09048" target="_blank"><b>Guaranteeing Conservation of Integrals in Physics-Informed Neural Networks</b></a>
<br>
<b>Anthony Baez</b>, Wang Zhang, Ziwen Ma, Subhro Das, Lam M Nguyen, and Luca Daniel
<br>
<i>Arxiv Preprint</i>
<br>
<a href="https://github.com/antbaez/pinn-proj" target="_blank">Code</a>
</p>
<p>
<a href="https://arxiv.org/abs/2410.17445" target="_blank"><b>Guaranteeing Conservation Laws in Physics-Informed Neural Networks</b></a>
<br>
<b>Anthony Baez</b>, Wang Zhang, Ziwen Ma, Subhro Das, Lam M Nguyen, and Luca Daniel
<br>
<i>Data-driven and Differentiable Simulations, Surrogates, and Solvers Workshop @ NeurIPS 2024</i>
<br>
<a href="https://github.com/antbaez/pinn-proj" target="_blank">Code</a>
</p>
<p>
<a href="https://aclanthology.org/2023.tsar-1.10.pdf" target="_blank"><b>LSLlama: Fine-tuned LLaMA for Lexical Simplification</b></a>
<br>
<b>Anthony Baez</b>, and Horacio Saggion
<br>
<i>Second Workshop on Text Simplification, Accessibility and Readability @ EMNLP 2023</i>
<br>
<a href="https://github.com/antbaez/LSLlama" target="_blank">Code</a>
</p>
</div>
</div>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>