-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
160 lines (144 loc) · 4.47 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
---
layout: post-index
title: Posts
---
<head>
{% include head.html %}
</head>
{% if paginator.previous_page %}
{% else %}
<article style="padding:0px">
<div class="grid" style="display:flex; align-items:stretch">
<div class="col-1-2 .d-md-none">
<div style="
display:table-cell;
float:left;
width:100%;
height:100%;
background-image: url(/media/profile.jpg);
background-size:cover;
background-position:center">
</div></div>
<div class="col-1-2">
<h2 class="entry-title">
About me
</h2>
<hr>
<p>
I research nonsmooth optimization, splitting algorithms, machine
learning, and monotone operator theory. My collaborators and I
develop these tools to solve nonlinear problems in data
science, signal/image/audio processing, and large-scale
optimization.
</p>
<p>
<a href="/about-me">more</a>
</p>
<br><br>
<h2 class="entry-title">Background</h2>
<hr>
<b>Assistant Professor</b>,
<a href="https://www.jmu.edu/mathstat/index.shtml">
James Madison University</a>, Dept. of Mathematics
& Statistics.
<br>
<b>Postdoc</b>,
<a href="https://iol.zib.de/">
Interactive Optimization and Learning Lab</a>, Technische
Universität Berlin and Zuse Institute Berlin.
<br>
<ul>
<li>Advisor: <a href="https://pokutta.com/">Sebastian
Pokutta</a> </li>
</ul>
<b>PhD, Mathematics</b>, North Carolina State University<br>
<ul>
<li>Advisor: <a href="https://pcombet.math.ncsu.edu/">Patrick L. Combettes</a> </li>
<li>Thesis: <a href="media/publications/thesis.pdf">
Construction of Functions from Nonlinear
Transformations</a></li>
</ul>
<b>MS, Applied Mathematics</b>, North Carolina State
University.<br>
<b>BS, Mathematics</b>, James Madison University.
</div>
</div>
</article>
{% endif %}
{% for post in paginator.posts %}
{% if post.donotlist %}
{% else %}
<article>
<!-- POST FEATURED IMAGE -->
<div class="featured-image">
<div style="height:150px; overflow-y:hidden; position:relative">
<a href="{{ site.url }}{{ post.url }}">
{% if post.featured-image == "" or post.featured-image == nil %}
{% if post.layout == "talks" or post.layout == "teaching" %}
<img src="/media/bokeh-header-1.png", style="width:100%">
{% else %}
<img src="/media/library-header-1.png", style="width:100%">
{% endif %}
{% else %}
<img src="{{ post.featured-image }}" style="width:100%;">
{% endif %}
</a>
</div></div>
<!-- POST TITLE -->
<header>
<h2 class="entry-title">
<a href="{{ site.url }}{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url">{{ post.title }}</a>
</h2>
<!-- {% if post.subtitle %}
<h3 class="entry-subtitle">
<a href="{{ site.url }}{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url">{{ post.subtitle }}</a>
</h3>
{% endif %} -->
</header>
<!-- POST BYLINE -->
<div class="post-byline">
{% if post.layout == "publication" %}
<i class="fa fa-book"></i>
{% endif %}
{% if post.layout == "talks" %}
<i class="fa fa-comment"></i>
{% endif %}
{% if post.layout == "teaching" %}
<i class="fa fa-school"></i>
{% endif %}
{%if post.layout == "post" %}
<i class="fa fa-laptop"></i> <i>Blog Post</i>
{% else %}
<i>{{ post.venue }}</i> <br>
{% if post.link-download %}
<a href="{{ post.link-download}}">Download</a>
{% else %}
{% if post.link-preprint %}
<a href="{{ post.link-preprint}}">Preprint</a>
{% endif %}
{% endif %}
{% endif %}
</div>
<!-- POST DATE -->
<div class="post-date">
{% if post.layout == "teaching" %}
{{ post.semester }}
{% else %}
{{ post.date | date: "%B %-d, %Y" }}
{% endif%}
</div>
<!-- POST CONTENT -->
<!-- <hr>
<div class="entry-content">
{{ post.excerpt }}
</div> -->
<!--- DIVIDING LINE -->
<!-- <hr> -->
</article>
{% endif %}
{% endfor %}
<div class="pagination">
<center>
{% include pagination.html %}
</center>
</div>