forked from csinva/csinva.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
03_notes.html
executable file
·216 lines (175 loc) · 7.53 KB
/
03_notes.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
---
layout: default
title: notes_main
section-type: notes
---
<h2 align="center"> blog + resources </h2>
<!--<h2 align="center"> more </h2>-->
<div class="coll2">
<h3 align="center">personal research blog</h3>
<ul class="list-items">
<li><a href="{{ site.baseurl }}/blog/interpretability/" style="font-size:16px"> 2019 - interpretability </a></li>
<li><a href="{{ site.baseurl }}/blog/connectomics/" style="font-size:16px"> 2019 - connectomics </a></li>
<li><a href="{{ site.baseurl }}/blog/neural_coding/" style="font-size:16px"> 2019 - neural coding </a></li>
</ul>
</div>
<div class="coll2">
<h3 align="center">misc blog</h3>
<ul class="list-items">
<li><a href="{{ site.baseurl }}/blog/reveal_md_enhanced/readme" style="font-size:16px"> 2019 - beautiful slides with reveal-md </a></li>
<li><a href="{{ site.baseurl }}/blog/latex_useful_tips/readme" style="font-size:16px"> 2019 - latex useful tips </a></li>
<li><a href="{{ site.baseurl }}/blog/imagenet_quickstart/readme" style="font-size:16px"> 2018 - imagenet quickstart </a></li>
<li><a href="{{ site.baseurl }}/blog/pytorch_dangerous_mistake/readme" style="font-size:16px"> 2018 - pytorch dangerous mistake </a></li>
</ul>
</div>
<center>
<!--<p>-->
<!--<hr>-->
<!--</br></br>-->
<i align="left">Resources including slides and research overviews in machine learning.</i>
</br></br>
<!--</p>-->
</center>
<div class="coll4">
<h3 align="center">ovw slides</h3>
<ul class="list-items">
<li><a href="{{ site.baseurl }}/pres/189/" style="font-size:16px"> ml ovw </a></li>
<li><a href="{{ site.baseurl }}/pres/188/" style="font-size:16px"> ai ovw </a></li>
<li><a href="https://docs.google.com/presentation/d/19fTICv0pyRiwGE39mqE_eGTq0Arn3OtVnDSrURFbPMA/present" style="font-size:16px"> research ovw </a></li>
<li><a href="https://docs.google.com/presentation/d/1d2prZlhmG72whCTzfGJ_pk-Pgv9Sx-bGG0e503whYvw/present?slide=id.p" style="font-size:16px"> vissci ovw </a></li>
<li><a href="{{ site.baseurl }}/pres/dnn_experiments/" style="font-size:16px"> dnn experiments </a></li>
<!--<li><a href="https://docs.google.com/presentation/d/15iygjXGLu7Ha096GwMV5t6sjP7IPcTHqimPkTDwrpPI/present?slide=id.p" style="font-size:16px"> hummingbird </a></li>-->
</ul>
</div>
<div class="coll4">
<h3 align="center">research ovws</h3>
<!-- a lot of lines which really just get the posts with tag research -->
{% for collection in site.collections %}
{% assign categories = "" | split:"|" %}
{% for doc in collection.docs %}
{% if doc.category %}
{% unless categories contains doc.category %}
{% assign categories = categories | push: doc.category %}
{% endunless %}
{% endif %}
{% endfor %}
{% assign categories_size = categories | size %}
{% if categories_size == 0 %}
{% assign categories = categories | push: nil %}
{% endif %}
{% for category in categories %}
{% if category == "research" %}
{% assign category_docs = collection.docs | where: "category", category %}
<ul class="list-items">
{% for item in category_docs %}
{% if item.title %}
<li><a href="{{ site.baseurl }}{{item.url}}" style="font-size:16px"> {{ item.title | downcase }} </a></li>
{% endif %}
{% endfor %}
</ul>
{% endif %}
{% endfor %}
{% endfor %}
</div>
<div class="coll4">
<h3 align="center">ml mini-projects</h3>
<ul class="list-items">
<!--<li><a href="{{ site.baseurl }}/prototype_learning/" style="font-size:16px"> prototype learning </a></li>-->
<li><a href="https://github.com/csinva/dl_theory" style="font-size:16px"> probing deep learning </a></li>
<li><a href="https://github.com/csinva/scattering_transform_experiments" style="font-size:16px"> scattering transform </a></li>
<li><a href="https://github.com/csinva/calcium_decoding_gan" style="font-size:16px"> gan brain decoding </a></li>
<li><a href="https://github.com/csinva/glaucoma_diagnosis" style="font-size:16px"> glaucoma diagnosis </a></li>
<li><a href="{{ site.baseurl }}/pytorch_gan_pretrained/" style="font-size:16px"> pretrained pytorch gans </a></li>
</ul>
</div>
<div class="coll4">
<h3 align="center">misc</h3>
<ul class="list-items">
<li><a href="https://github.com/csinva/news-balancer" style="font-size:16px"> news balancer web </a></li>
<li><a href="{{ site.baseurl }}/hummingbird_tracking/" style="font-size:16px"> hummingbird tracking </a></li>
<li><a href="https://github.com/csinva/threshold_simulations/" style="font-size:16px"> biophysical threshold simulation </a></li>
</ul>
</div>
<!--<div class="roww"> <!–begin the 1st row–>-->
<!--</div>-->
<div class="roww">
<!--<br>-->
<!--A rough set of notes/posts which may serve as useful reference for people in machine learning / neuroscience.-->
</div>
<div class="roww">
<center>
<!--<p>-->
<!--<hr>-->
<!--</br></br>-->
<i align="left">A rough set of notes/posts which may serve as useful reference for people in machine learning / neuroscience.</i>
</br></br>
<!--</p>-->
</center>
</div>
<div class="roww"> <!--begin the 1st row-->
{% for collection in site.collections %}
{% assign categories = "" | split:"|" %}
{% for doc in collection.docs %}
{% if doc.category %}
{% unless categories contains doc.category %}
{% assign categories = categories | push: doc.category %}
{% endunless %}
{% endif %}
{% endfor %}
{% assign categories_size = categories | size %}
{% if categories_size == 0 %}
{% assign categories = categories | push: nil %}
{% endif %}
{% for category in categories %}
{% if category %}
{% if category != "blog" %}
{% if category != "research" %}
<div class="coll">
<h3 align="center">{{ category | downcase }}</h3>
{% assign category_docs = collection.docs | where: "category", category %}
<ul class="list-items">
{% for item in category_docs %}
{% if item.title %}
<li><a href="{{ site.baseurl }}{{item.url}}" style="font-size:16px"> {{ item.title | downcase }} </a></li>
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}
{% endif %}
{% endif %}
{% if category == "math" %}
</div> <!--end the 1st row-->
<div class="roww"> <!--begin the 2nd row-->
{% endif %}
{% endfor %}
{% endfor %}
<!--</div> <!–end the 2nd row–>-->
<style>
.coll {
float: left;
width: 33.33%;
padding-bottom: 50px;
}
.coll2 {
float: left;
width: 49.9%;
padding-bottom: 50px;
}
.coll4 {
float: left;
width: 24.9%;
padding-bottom: 50px;
}
.coll5 {
float: left;
width: 19.99%;
padding-bottom: 50px;
}
/* Clear floats after the columns */
.roww:after {
content: "";
display: table;
clear: both;
}
</style>