forked from jekyllup/jekyll-theme-massively
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·142 lines (121 loc) · 5.75 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
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
---
layout: null
title: Joseph Wallace
description: Joseph Wallace's personal website.
sitemap:
priority: 1.0
lastmod: 2017-11-02
changefreq: weekly
---
<!DOCTYPE HTML>
<!--
Massively by HTML5 UP
html5up.net | @ajlkn
Jekyll integration by somiibo.com
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
{% include head.html %}
</head>
<style>
img {
float: left;
}
ol {
text-align: left;
}
</style>
<body class="is-loading">
<!-- Wrapper -->
<div id="wrapper" class="fade-in">
<!-- Intro -->
<div id="intro">
<h1>{{site.title}}</h1>
<h2>Scientist and Engineer</h2>
<p>This website is designed to be a common area to bring together my various professional interest.</p>
<ul class="actions">
<li><a href="#header" class="button icon solo fa-arrow-down scrolly">Continue</a></li>
</ul>
</div>
<!-- Header -->
<header id="header">
<a href="{{ "/" | absolute_url }}" class="logo">{{site.title}}</a>
</header>
<!-- Nav -->
<nav id="nav">
{% include nav.html %}
<ul class="icons">
<li><a href="https://linkedin.com/in/joseph-b-wallace/" class="icon fa-linkedin" rel="nofollow"><span class="label">LinkedIn</span></a></li>
<li><a href="https://researchgate.net/profile/Joseph_Wallace5" class="fab fa-researchgate" rel="nofollow"><span class="label"></span></a></li>
<li><a href="https://github.com/joseywallace" class="icon fa-github" rel="nofollow"><span class="label">GitHub</span></a></li>
</ul>
</nav>
<!-- Main -->
<div id="main">
<!-- Featured Post -->
<article class="post featured">
<img src="{{ "/images/IMG_0721_crop.jpg" | absolute_url }}" width="175" alt="" align="left" style="padding: 0 15px; float: left;";/>
<p align="right" style="margin-left: 1px" >Hi, I'm Joseph Wallace; an Engineer, Scientist, and lifelong learner. I currently work at Intel where I specialize in technology development and optimization for next-gen electron beam lithography processes. Prior to this I was designing and conducting pulsed ion beam experiments at Lawrence Livermore National Laboratory to probe the lifetime of radiation generated defects in materials, while working on a PhD in Nuclear Engineering at Texas A&M University.</p>
<br />
<h2 align="left">Engineer</h2>
<div class="box">
<p>
I currently work at Intel, as a Senior Process Engineer, pushing the limits of the electron beam lithography processes used to create photomask. The e-beam lithography tools are extremely complex state-of-the-art machines that create loads of process data. Fully utilizing such data requires a 'full-stack' data science approach involving the following steps:
<ol>
<li>Identify parameters of interest and implement equipment to monitor </li>
<li>Gather and reshape data from tool and setup SQL to upload to database</li>
<li>Create script to download data and perform data cleaning</li>
<li>Perform exploratory data analysis to identify correlations</li>
<li>Reduce sources of process-line correlation by adjusting tool operation</li>
<li>Design a machine learning model to account for remaining sources of correlation</li>
</ol>
<p align="right">By combining the Statistical Process Control (SPC) approach with Machine Learning (ML) I was able to signifcantly reduce process variation that led to improved yield and tool uptime. </p>
</p>
</div>
<br />
<h2 align="left"> Scientist</h2>
<div class="box">
<p>
As a scientist at Lawrence Livermore National Laboratory, I designed and conducted pulsed ion beam experiments to probe the lifetime of radiation generated defects in silicon. Irradiations were performed on an Van der Graaf 4 MV particle accelerator. The results of these experiments found the lifetime of defects on the scale of ~0.1 - 100 microseconds, whereas previous estimates ranged from 100s of seconds to nanoseconds (an astonishishing 12 orders of magnitude!!). The results of these experiments resulted in ~12 publications (See Publications).
</p>
</div>
<h2 align="left">Lifelong Learner</h2>
<div class="box">
<p>
At Texas A&M I graduated with a PhD in Nuclear Engineering in 2016 and did a double degree in Nuclear Engineering and Physics in undergrad. However, since finishing my PhD I have continued learning through online platforms such as Coursera, Edx, and Udacity. I am currently working towards a Masters degree in Computer Science with a specialization in Machine Learning through Georgia Tech.
</p>
</div>
</article>
<!-- Posts -->
<section class="posts">
{% for post in site.posts limit:4 %}
{% assign mod3 = forloop.index | modulo: 4 %}
<article>
<header>
<span class="date">{{ post.date | date_to_string }}</span>
<h2><a href="{{ post.url | absolute_url }}">{{ post.title }}</a></h2>
</header>
<a href="{{ post.url | absolute_url }}" class="image fit"><img src="{{ post.image | absolute_url }}" alt="" /></a>
<p>{{ post.excerpt }}</p>
<ul class="actions">
<li><a href="{{ post.url | absolute_url }}" class="button">Full Story</a></li>
</ul>
</article>
{% endfor %}
</section>
<!-- Footer -->
<footer>
<ul class="actions">
<li><a href="{{ "/blog/" | absolute_url }}" class="button">The Blog</a></li>
</ul>
</footer>
</div>
<!-- Footer -->
{% include foot.html %}
</div>
<!-- Scripts -->
{% include scripts-main.html %}
{% include tracking.html %}
</body>
</html>