-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
145 lines (141 loc) · 4.57 KB
/
index.html
File metadata and controls
145 lines (141 loc) · 4.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Murray S. Bennett - Postdoctoral Researcher</title>
<link rel="stylesheet" href="style.css" />
<style>
.profile-section {
display: flex;
align-items: center;
gap: 2em;
margin-bottom: 2em;
}
.profile-photo {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
border: 3px solid #333;
}
.research-areas {
display: flex;
justify-content: space-around;
gap: 2em;
margin-top: 2em;
text-align: center;
}
.research-card {
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 8px;
padding: 1.5em;
flex: 1;
}
.research-card h3 {
margin-top: 0;
color: #333;
}
</style>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html" class="current-page">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="demos.html">Experiment Demos</a></li>
<li><a href="teaching.html">Teaching</a></li>
<li><a href="CV.html">CV</a></li>
</ul>
</nav>
</header>
<main>
<div class="profile-section">
<img
src="murray_small.png"
alt="A photo of Murray S. Bennett"
class="profile-photo"
/>
<div>
<h1>Murray S. Bennett</h1>
<p>Postdoctoral Scholar | The Ohio State University</p>
<p>
I am a postdoctoral researcher in the Psychology Department at the
Ohio State University studying
<em>cognitive processing, human-AI teams, and machine learning</em>.
My research focuses on understanding human cognition and AI features
to promote efficient interaction. I leverage cognitive models and
machine learning techniques to analyze information processing in
both human and AI systems. My current work seeks to bridge the gap
between human and AI perception to improve melanoma identification
by developing methods to assess AI's internal representations and
enhance confidence estimation, ultimately fostering more robust and
transparent human-AI collaboration.
</p>
</div>
</div>
<hr />
<h2>Research Highlights</h2>
<p>
Explore my core areas of research and dive into the details on the
<a href="research.html">Research page</a>.
</p>
<div class="research-areas">
<div class="research-card">
<h3>Human-AI Teams</h3>
<p>
Investigating how cognitive processes and social judgments influence
collaboration between humans and AI systems, with a focus on trust
and performance.
</p>
</div>
<div class="research-card">
<h3>Cognitive Modeling</h3>
<p>
Using computational models to analyze information processing in
decision-making and perception, providing a quantitative
understanding of human and AI behavior.
</p>
</div>
<div class="research-card">
<h3>Machine Learning</h3>
<p>
Applying machine learning techniques to analyze complex data from
human-AI interactions and developing methods to improve AI
transparency and confidence.
</p>
</div>
</div>
</main>
<footer>
<hr />
<p>
<a href="mailto:bennett.1755@osu.edu"
><i class="fas fa-envelope"></i> Email</a
>
|
<a href="https://orcid.org/0000-0001-7309-4915" target="_blank"
><i class="fab fa-orcid"></i> ORCID</a
>
|
<a href="https://github.com/MurraySBennett" target="_blank"
><i class="fab fa-github"></i> GitHub</a
>
</p>
<p>© <span id="current-year"></span> Murray S. Bennett</p>
</footer>
<script>
document.getElementById("current-year").textContent =
new Date().getFullYear();
</script>
</body>
</html>