-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
207 lines (179 loc) · 8.42 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
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
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=David+Libre|Hind:400,700" rel="stylesheet">
<link rel="stylesheet" href="./fonts/Serif/cmun-serif.css" />
<link rel="stylesheet" href="./fonts/Serif-Slanted/cmun-serif-slanted.css" />
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/nav_bar.css">
<link rel="stylesheet" href="css/search.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/tags.css">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-143270978-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-143270978-1');
</script>
<link rel="shortcut icon" href="./data/icons/Icon.ico" />
<title>Igor's Tech Blog</title>
</head>
<body class="home-page">
<header class="header">
<div class="logo">
<a href="./index.html" title="Home">
<img src="data/vector/logo.svg" alt="Home">
</a>
</div>
<nav class="navigation">
<a href="#navigation" class="nav-trigger">
<span><em aria-hidden="true"></em></span>
</a>
<div class="search">
<form>
<input class="search-input" placeholder="Search post by tag...">
<input type="submit">
</form>
</div>
<ul>
<li><a href="./archives.html">Archives</a></li>
<li><a href="./about.html">About</a></li>
</ul>
</nav>
</header>
<main>
<section class="gallery">
<div class="container">
<div class="gallery-list">
<div class="mix astronomy physics">
<a href="posts/2018-09-23-Orbits/index.html">
<div class="post">
<img src="./data/images/post-covers/planets.png">
<div class="post-body">
<h3>Why Are Planet Orbits Elliptical?</h3>
<p>An introduction to the history of solving one of the oldest questions of astronomy.</p>
<div class="tags">
<button type="button" class="tag">astronomy</button>
<button type="button" class="tag">physics</button>
</div>
</div>
</div>
</a>
</div>
<div class="mix math">
<a href="posts/2018-10-20-Math-Part-1/index.html">
<div class="post">
<img src="./data/images/post-covers/applied_math.png">
<div class="top-left">I</div>
<div class="post-body">
<h3>Applied Math. Part I: Introduction.</h3>
<p>How to embrace the unembraceable?</p>
<div class="tags">
<button type="button" class="tag">math</button>
</div>
</div>
</div>
</a>
</div>
<div class="mix math">
<a href="posts/2018-12-9-Math-Part-2/index.html">
<div class="post">
<img src="./data/images/post-covers/applied_math.png">
<div class="top-left">II</div>
<div class="post-body">
<h3>Applied Math. Part II: Derivative.</h3>
<p>A quick recap of what derivative is and what it is for.</p>
<div class="tags">
<button type="button" class="tag">math</button>
</div>
</div>
</div>
</a>
</div>
<div class="mix ml nn dl">
<a href="./posts/2019-03-15-DL/index.html">
<div class="post">
<img src="./data/images/post-covers/dl.png">
<div class="post-body">
<h3>What Is Deep Learning?</h3>
<p>A short introduction into the world of Machine Learning.</p>
<div class="tags">
<button type="button" class="tag">ml</button>
<button type="button" class="tag">nn</button>
<button type="button" class="tag">dl</button>
</div>
</div>
</div>
</a>
</div>
<div class="mix nn ml">
<a href="./posts/2019-04-11-MLP-Part-1/index.html">
<div class="post">
<img src="./data/images/post-covers/nn.png">
<div class="top-left">I</div>
<div class="post-body">
<h3>Multilayer Perceptron. Part I: Introduction.</h3>
<p>The simplest neural network architecture. Basic concepts.</p>
<div class="tags">
<button type="button" class="tag">ml</button>
<button type="button" class="tag">nn</button>
</div>
</div>
</div>
</a>
</div>
<div class="mix nn ml">
<a href="./posts/2019-05-20-MLP-Part-2/index.html">
<div class="post">
<img src="./data/images/post-covers/nn.png">
<div class="top-left">II</div>
<div class="post-body">
<h3>Multilayer Perceptron. Part II: Training.</h3>
<p>How is perceptron trained?</p>
<div class="tags">
<button type="button" class="tag">ml</button>
<button type="button" class="tag">nn</button>
</div>
</div>
</div>
</a>
</div>
<div class="mix nn ml">
<a href="./posts/2019-10-20-MLP-Part-3/index.html">
<div class="post">
<img src="./data/images/post-covers/nn.png">
<div class="top-left">III</div>
<div class="post-body">
<h3>Multilayer Perceptron. Part III: Regularization.</h3>
<p>The story of why regularization is essential for training neural networks.</p>
<div class="tags">
<button type="button" class="tag">ml</button>
<button type="button" class="tag">nn</button>
</div>
</div>
</div>
</a>
</div>
<div class="gap"></div>
<div class="gap"></div>
<div class="fail-message">
<p>Results not found. Show <a href="./index.html">all</a> posts.</p>
</div>
</div>
</div>
</section>
</main>
<div class="footer"></div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="js/mixitup.min.js"></script>
<script src="js/main.js"></script>
<script src="js/filtering.js"></script>
</body>
</html>