-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
121 lines (101 loc) · 3.68 KB
/
cv.html
File metadata and controls
121 lines (101 loc) · 3.68 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
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<title>Austin P. Wright</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="icon" href="icons/favicon.ico" type="image/x-icon" />
</head>
<body>
<main>
<a href="index"><img class="logo" src="icons/apw_logo.svg" alt="APW"><a>
<h1 class="intro-title"> Austin P. Wright </h1>
<span class="cv-subtitle">
<em><span style="color: #073763; font-weight:500;">ML</span> + <span style="color:#bf9000;; font-weight:500;">HCI</span> researcher</em> and
head of the <a style="font-weight:500;"href="https://calpoly-data-design-lab.github.io"> <em>Cal Poly Data Design Lab</em></a>.
</span>
<p>
I’m an Assistant Professor in the Computer Science
Department at Cal Poly San Luis Obispo. My research in
<strong>
Scientific Human-Centered Machine Learning</strong
>
aims to solve problems intersecting machine learning,
human-computer interaction, and scientific computing, by
using a strong basis in both mathematical and human
centered principles in deep collaboration with
scientists to develop tools with
<em>usability</em>, <em>interpretability</em>, and
<em>scientific impact</em>.
</p>
<h2 class="cv-heading" >Education </h2>
<hr>
<div id="education-list"></div>
<h2 class="cv-heading" >Teaching </h2>
<hr>
<div id="teaching-list"></div>
<h2 class="cv-heading" >Publications </h2>
<hr>
<div id="publication-list"></div>
</main>
</body>
<script src="cv.js" type="module"></script>
</html>
<!--<div>
```js
const education = FileAttachment("data/education.json").json();
const courses = FileAttachment("data/courses.json").json();
const publications = FileAttachment("data/scholar.csv").csv({typed: true});
```
<h2 class="cv-heading" >Education </h2>
<hr>
<div id="education-list"></div>
```js
const education_list = d3.select("#education-list")
.selectAll("div")
.data(education)
.enter()
.append("div")
.attr("class","cv-entry")
.html((d)=>{
if (d.thesis){
return `<div class="cv-degree"> ${d.year}, ${d.degree} ${d.subject}, ${d.institution} </div> <div class="cv-advisor"> Advisor: ${d.advisor} </div> <div class="cv-thesis"> Thesis: <a href="${d.thesis_link}"> ${d.thesis} </a> </div>`
} else {
return ` <div class="cv-degree"> ${d.year}, ${d.degree} ${d.subject}, ${d.institution} </div>`
}
})
```
<h2 class="cv-heading" >Teaching </h2>
<hr>
<div id="teaching-list"></div>
```js
const teaching_list = d3.select("#teaching-list")
.selectAll("div")
.data(courses)
.enter()
.append("div")
.attr("class","cv-entry")
.html((d)=>{
return `<div class="cv-course"> <a href="${d.link}"> ${d.course}, ${d.term} ${d.year} </a> </div>`;
})
```
<h2 class="cv-heading" >Publications </h2>
<hr>
<div id="publication-list"></div>
```js
const publication_list = d3.select("#publication-list")
.selectAll("div")
.data(publications.sort((a,b)=>d3.descending(a.pub_year,b.pub_year)))
.enter()
.append("div")
.attr("class","cv-entry")
.html((d)=>{
return `<a class="cv-paper-title" href="${d.url}"> ${d.title}</a> <div class="cv-paper-citation">${d.author}, ${d.citation}</div>`;
})
```-->
<!--</html>-->