forked from csinva/csinva.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path03_notes.html
executable file
·187 lines (151 loc) · 6.34 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
---
layout: default
title: notes_main
section-type: notes
---
<h2 align="center"> resources </h2>
<!--<h2 align="center"> more </h2>-->
<div class="coll5">
<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="{{ site.baseurl }}/pres/qual" 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="https://docs.google.com/presentation/d/15iygjXGLu7Ha096GwMV5t6sjP7IPcTHqimPkTDwrpPI/present?slide=id.p" style="font-size:16px"> hummingbird </a></li>-->
</ul>
</div>
<div class="coll5">
<h3 align="center">code guides</h3>
<ul class="list-items">
<li><a href="{{ site.baseurl }}/imagenet_quickstart_pytorch/" style="font-size:16px"> imagenet quickstart </a></li>
<li><a href="{{ site.baseurl }}/machine_learning_coding_tips/" style="font-size:16px"> writing good ml code </a></li>
<li><a href="{{ site.baseurl }}/reveal_md_enhanced/" style="font-size:16px"> making reveal-md slides </a></li>
<li><a href="{{ site.baseurl }}/pytorch_gan_pretrained/" style="font-size:16px"> pretrained pytorch gans </a></li>
</ul>
</div>
<div class="coll5">
<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>
</ul>
</div>
<div class="coll5">
<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–>-->
{% 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" %}
<div class="coll5">
<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 %}
{% endfor %}
{% endfor %}
<!--</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;
}
.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>