-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresearch.html
79 lines (72 loc) · 3.1 KB
/
research.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">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="maintained-by" content="Daniel Furman">
<meta name="author" content="Daniel Furman">
<meta name="keywords" content="Daniel Furman, Research">
<title>Daniel's Website</title>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon-16x16.png">
<link rel="manifest" href="assets/site.webmanifest">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<!-- Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- Link to external CSS file -->
<link rel="stylesheet" href="assets/styles.css">
</head>
<body>
<header>
<nav>
<h1>Daniel Furman</h1>
<div style="display: flex; align-items: center;">
<a href="index.html">Home</a>
<a href="research.html">Research</a>
<a href="blog.html">Blog</a>
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox" />
<div class="slider">
<i class="fas fa-sun icon sun"></i>
<i class="fas fa-moon icon moon"></i>
</div>
</label>
</div>
</div>
</nav>
</header>
<div class="container">
<main>
<section class="about">
<h2>Research</h2>
<p>My research focuses on the application of AI/ML to solve real-world problems.</p>
</section>
<section class="about">
<h2>Topics</h2>
<ul>
<li>
<p>Building LLM agents for email and text communication channels</p>
</li>
<li>
<p>Evaluation of LLMs, with an emphasis on multilingual capabilities</p>
</li>
<li>
<p>Semantic segmentation in high-resolution, multiband drone imagery</p>
</li>
</ul>
<h2>Selected Publications</h2>
<ul>
<li>
Daniel Furman, Tim Schott, Shreshta Bhat. <a href="https://aclanthology.org/2023.emnlp-main.691/" target="_blank">Polyglot or Not? Measuring Multilingual Encyclopedic Knowledge in Foundation Models</a>. Empirical Methods in Natural Language Processing (2023)
</li>
</ul>
</section>
</main>
</div>
<script type = "text/javascript" src="assets/functions.js"></script>
</body>
</html>