-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (95 loc) · 3.72 KB
/
Copy pathindex.html
File metadata and controls
104 lines (95 loc) · 3.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About me...</title>
<link rel="stylesheet" href="./src/styles/main.css">
</head>
<body>
<!-- Navigation -->
<nav class="main-nav">
<div class="nav-container">
<a href="index.html" class="nav-link active">About Me</a>
<a href="paper.html" class="nav-link">Recent Paper</a>
</div>
</nav>
<main>
<!-- About Me Page -->
<section id="about-page" class="page active">
<div class="about-me">
<h1>About me...</h1>
<p class="intro-text">Hi! I'm Will, and I'm passionate about all things ML/NLP related!</p>
<!-- Brief Introduction -->
<div class="intro">
<h2>Education</h2>
<p>Washington University in St. Louis | Class of 2028</p>
<p>B.S. in Computer Science + Mathematics | GPA: 4.0/4.0</p>
</div>
<!-- Current Focus -->
<div class="current-focus">
<h2>Current Focus</h2>
<p>-Exploring machine learning and natural language processing projects</p>
</div>
<!-- What I'm Learning Now -->
<div class="learning">
<h2>What I'm Learning Now</h2>
<p>-New techniques/improvements in AI architectures</p>
</div>
<!-- Technical Interests -->
<div class="Hard Skills">
<h2>Hard Skills</h2>
<ul>
<li>Python</li>
<li>Java</li>
<li>C</li>
<li>NumPy</li>
<li>PyTorch</li>
<li>OpenCV</li>
<li>Deep Learning</li>
<li>Neural Networks</li>
<li>Computer Vision</li>
</ul>
</div>
<!-- Open Source Contributions -->
<div class="open-source">
<h2>Recent Open Source Contributions</h2>
<div class="contribution-grid">
<p>-First PR in the works!</p>
</div>
</div>
<!-- Clubs, Research, Work -->
<div class="activities">
<h2>Clubs, Research & Work</h2>
<div class="activity-grid">
<div class="activity-card">
<h3>Team Nimble - Club Robotics</h3>
<p>Member, Ongoing</p>
<ul>
<li>Exploring a vision-based robotic arm that responds to natural language prompts</li>
</ul>
</div>
<div class="activity-card">
<h3>Personal Project: AI therapist</h3>
<p>Self-taught, Complete</p>
<ul>
<li>Self taught Python, PyTorch, Numpy, and an array of machine learning/natural language processing techniques to develop an AI therapist! More details can be found on my GitHub repo: <a href="https://github.com/wadkisson/Personal-Chatbot" target="_blank">github.com/wadkisson/Personal-Chatbot</a></li>
</ul>
</div>
</div>
</div>
<!-- Connect Info -->
<div class="connect">
<h2>Connect With Me!</h2>
<p>Email: adkisson@wustl.edu</p>
<p>Phone: (612) 979-6246</p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/william-adkisson" target="_blank">linkedin.com/in/william-adkisson</a></p>
<p>GitHub: <a href="https://github.com/wadkisson" target="_blank">github.com/wadkisson</a></p>
</div>
</div>
</section>
</main>
<script type="module" src="./src/main.js"></script>
</body>
</html>