-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
81 lines (71 loc) · 4.26 KB
/
index.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
80
81
<!DOCTYPE html>
<html>
<head>
<meta charset="utf=8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Personal Website">
<meta name="keywords" content="Aidan Good, Computer Science">
<meta name="author" content="Aidan Good">
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico">
<title>Aidan Good | Welcome</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="main-container">
<header>
<div class="container">
<div id="FrontName">
<h1><span class="highlight">William</span> Aidan Good</h1>
</div>
<nav>
<ul>
<li class="current"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</nav>
</div>
</header>
<section id="showcase">
<div class="container">
<h1>I'm Aidan Good</h1>
<p>
During working hours I'm an ASIC design engineer at Ericsson. During my personal hours I try to not do nothing.
</p>
</div>
</section>
<section id="frontbody">
<div class="container">
<div class="fbproject">
<h3>Featured Projects</h3>
<ul>
<li class="bubble"><a class="name" href="subpages/undergradresearch.html">Recall Distortion in Neural Network Pruning and the Undecayed Pruning Algorithm</a> <br>
Paper accepted into the NeurIPS 2022 Conference.<br>
In this work, we studied relative distortions in class-level recall caused by network pruning by hypothesizing an intensification effect. <br>
In layman's terms: we studied how removing weights from ML networks can cause very unequal class-level accuracies even when the model-level accuracy remains high.
</li>
<li class="bubble"><a class="name" href="subpages/McCoy.html">McCoy 8-bit Microprocessor</a> <br>
Created a tiny RISC processor with 7 instructions, 10 registers, and can run a 256 instruction long program.
Taped-out and submitted for fabrication on a chipIgnite shuttle through the Tiny Tapeout program.
</li>
<li class="bubble"><a class="name" href="projects.html">Dance Dance Revolution with the Basys3</a> <br>
Created a Dance Dance Revolution game playable on the Basys3 FPGA board, written in Verilog. <br>
Includes NES controller support and VGA output.
</li>
<!-- <li class="bubble"><a class="name" href="projects.html">Internet of Things Temperature and Humidity Sensor</a> <br>
With a ESP32 and DHT11 sensor, I created a small temperature and humidity monitor. By using the ESP32 as a wifi station,
it hosts a webpage that displays the current measurements in real time, viewable from any device connected to the local network.
</li> -->
<li class="bubble"><a class="name" href="https://github.com/AidanGood">GitHub Profile</a> <br>
I try to upload the code and documentation for projects I have created and worked, but not everyting makes the cut. <br>
</li>
</ul>
</div>
</div>
</section>
<footer>
<p>William Aidan Good © 2023</p>
</footer>
</div>
</body>
</html>