-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
303 lines (180 loc) · 12.5 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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>README</title>
<meta name="author" content="Sanghyuk Chun">
<meta name="description" content="Dec 18 2016
Machine learning 스터디 (10) PAC Learning & Statistical Learning Theory
내 멋대로 정리해보는 Machine Learning. PAC Learning & Statistical Learning …">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="http://SanghyukChun.github.io">
<link href="/favicon.png" rel="icon">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href="/stylesheets/layout480.css" media="only screen and (max-width : 750px)" rel="stylesheet" type="text/css">
<link href="/atom.xml" rel="alternate" title="README" type="application/atom+xml">
<!--Fonts from Google"s Web font directory at http://google.com/webfonts -->
<link href="http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
<script src="/javascripts/modernizr-2.0.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>!window.jQuery && document.write(unescape('%3Cscript src="./javascripts/lib/jquery.min.js"%3E%3C/script%3E'))</script>
<script src="/javascripts/modernizr-2.0.js"></script>
<script src="/javascripts/bootstrap.js" type="text/javascript"></script>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script>
$(function() {
$('.tip').attr('data-toggle','tooltip');
$('.tip').attr('data-placement','top');
$('.tip').tooltip();
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
jax: ["input/TeX", "output/HTML-CSS"],
tex2jax: {
//inlineMath: [ ['$', '$'], ["\(", "\)"] ],
inlineMath: [ ['$', '$'] ],
displayMath: [ ['$$', '$$'] ],
processEscapes: true,
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
}
//,
//displayAlign: "left",
//displayIndent: "2em"
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-42711199-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-5347633964054949",
enable_page_level_ads: true
});
</script> </script>
</head>
<body >
<div id="main">
<header role="banner"><hgroup>
<h1><a id="blog-title" href="/">README </a>
<span style="white-space:nowrap;">SanghyukChun's Blog</span>
</h1>
<div class="clear"></div>
</hgroup>
</header>
<nav role="navigation"><ul class="main-navigation list-inline">
<li><a href="/">Blog</a></li>
<li><a href="/archives">Archives</a></li>
<li><a href="/search">Search</a></li>
<li><a href="/home">Homepage</a></li>
</ul>
</nav>
<div id="content">
<div class="blog-index">
<article class="mB40">
<p><time datetime="2016-12-18T16:00:00+09:00" pubdate><span class='month'>Dec</span> <span class='day'>18</span> <span class='year'>2016</span></time><br>
<span class="archive-title"><a href="/66/">Machine learning 스터디 (10) PAC Learning & Statistical Learning Theory</a></span><br>
내 멋대로 정리해보는 Machine Learning. PAC Learning & Statistical Learning Theory</p>
<span class="categories"><a class='category' href='/blog/categories/machine-learning/'>Machine-Learning</a>, <a class='category' href='/blog/categories/machine-learning-study/'>Machine-Learning-Study</a></span>
</article>
<article class="mB40">
<p><time datetime="2016-08-21T23:47:00+09:00" pubdate><span class='month'>Aug</span> <span class='day'>21</span> <span class='year'>2016</span></time><br>
<span class="archive-title"><a href="/101/">Game Theory Study (1) Introduction and Overview</a></span><br>
Coursera Game Thoery 강의 1주차 요약글. Game Theory에 대한 간단한 Introduction과, Game, Nash Equilibrium, Dominant, Pareto Optimality 등 중요한 몇 가지 definition들을 다룬다.</p>
<span class="categories"><a class='category' href='/blog/categories/cousera/'>Cousera</a>, <a class='category' href='/blog/categories/game-theory-study/'>Game-Theory-Study</a>, <a class='category' href='/blog/categories/lecture/'>Lecture</a></span>
</article>
<article class="mB40">
<p><time datetime="2016-08-16T00:58:00+09:00" pubdate><span class='month'>Aug</span> <span class='day'>16</span> <span class='year'>2016</span></time><br>
<span class="archive-title"><a href="/99/">Practical Bayesian Optimization of Machine Learning Algorithms (NIPS 2012)</a></span><br>
NIPS 2012에 발표된 Practical Bayesian Optimization of Machine Learning Algorithms 정리</p>
<span class="categories"><a class='category' href='/blog/categories/machine-learning/'>Machine-Learning</a>, <a class='category' href='/blog/categories/paper-review/'>Paper-Review</a>, <a class='category' href='/blog/categories/research/'>Research</a></span>
</article>
<article class="mB40">
<p><time datetime="2016-03-21T00:45:00+09:00" pubdate><span class='month'>Mar</span> <span class='day'>21</span> <span class='year'>2016</span></time><br>
<span class="archive-title"><a href="/98/">Octopress Markdown Kramdown으로 이전하기</a></span><br>
Octopress를 완전하게 Markdown 문법으로만 사용하기 위해서 오늘 하루 동안 했던 MathJax 삽질이랑 Kramdown 삽질 (Table of Contents 세팅 등) 등등의 삽질에 대해서 정리해봤다.</p>
<span class="categories"><a class='category' href='/blog/categories/development/'>Development</a>, <a class='category' href='/blog/categories/octopress/'>Octopress</a></span>
</article>
<article class="mB40">
<p><time datetime="2016-03-15T02:28:00+09:00" pubdate><span class='month'>Mar</span> <span class='day'>15</span> <span class='year'>2016</span></time><br>
<span class="archive-title"><a href="/97/">AlphaGo의 알고리즘과 모델</a></span><br>
Google Deep Mind에서 2016년 Nature에 발표한 matering the Game of Go with Deep Neural Network and Tree Search 정리. 이 논문은 바둑 프로그램 AlphaGo에 대한 논문이다.</p>
<span class="categories"><a class='category' href='/blog/categories/deep-learning/'>Deep-Learning</a>, <a class='category' href='/blog/categories/machine-learning/'>Machine-Learning</a>, <a class='category' href='/blog/categories/neural-network/'>Neural-Network</a>, <a class='category' href='/blog/categories/paper-review/'>Paper-Review</a>, <a class='category' href='/blog/categories/reinforcement-learning/'>Reinforcement-Learning</a>, <a class='category' href='/blog/categories/research/'>Research</a></span>
</article>
<article class="mB40">
<p><time datetime="2016-03-13T19:28:00+09:00" pubdate><span class='month'>Mar</span> <span class='day'>13</span> <span class='year'>2016</span></time><br>
<span class="archive-title"><a href="/96/">Machine learning 스터디 (20-1) Multi-armed Bandit</a></span><br>
내 멋대로 정리해보는 Machine Learning. Multi-armed Bandit</p>
<span class="categories"><a class='category' href='/blog/categories/machine-learning/'>Machine-Learning</a>, <a class='category' href='/blog/categories/machine-learning-study/'>Machine-Learning-Study</a></span>
</article>
<article class="mB40">
<p><time datetime="2016-03-06T01:30:00+09:00" pubdate><span class='month'>Mar</span> <span class='day'>06</span> <span class='year'>2016</span></time><br>
<span class="archive-title"><a href="/95/">Machine learning 스터디 (17-1) Recommendation System with Implicit Feedback</a></span><br>
내 멋대로 정리해보는 Machine Learning. Recommendation System with Implicit Feedback</p>
<span class="categories"><a class='category' href='/blog/categories/machine-learning/'>Machine-Learning</a>, <a class='category' href='/blog/categories/machine-learning-study/'>Machine-Learning-Study</a></span>
</article>
<article class="mB40">
<p><time datetime="2016-03-01T17:58:00+09:00" pubdate><span class='month'>Mar</span> <span class='day'>01</span> <span class='year'>2016</span></time><br>
<span class="archive-title"><a href="/73/">Machine learning 스터디 (17) Recommendation System (Matrix Completion)</a></span><br>
내 멋대로 정리해보는 Machine Learning. Recommendation System</p>
<span class="categories"><a class='category' href='/blog/categories/machine-learning/'>Machine-Learning</a>, <a class='category' href='/blog/categories/machine-learning-study/'>Machine-Learning-Study</a></span>
</article>
<article class="mB40">
<p><time datetime="2015-10-19T18:20:00+09:00" pubdate><span class='month'>Oct</span> <span class='day'>19</span> <span class='year'>2015</span></time><br>
<span class="archive-title"><a href="/93/">Show, Attend and Tell: Neural Image Caption Generation with Visual Attention (ICML2015)</a></span><br>
ICML 2015에 발표된 Show, Attend and Tell: Neural Image Caption Generation with Visual Attention 정리</p>
<span class="categories"><a class='category' href='/blog/categories/deep-learning/'>Deep-Learning</a>, <a class='category' href='/blog/categories/machine-learning/'>Machine-Learning</a>, <a class='category' href='/blog/categories/neural-network/'>Neural-Network</a>, <a class='category' href='/blog/categories/paper-review/'>Paper-Review</a>, <a class='category' href='/blog/categories/reinforcement-learning/'>Reinforcement-Learning</a>, <a class='category' href='/blog/categories/research/'>Research</a></span>
</article>
<article class="mB40">
<p><time datetime="2015-10-14T00:57:00+09:00" pubdate><span class='month'>Oct</span> <span class='day'>14</span> <span class='year'>2015</span></time><br>
<span class="archive-title"><a href="/92/">고흐의 그림을 따라그리는 Neural Network, A Neural Algorithm of Artistic Style (2015)</a></span><br>
2015년에 arXiv에 upload된 A Neural Algorithm of Artistic Style 논문 리뷰</p>
<span class="categories"><a class='category' href='/blog/categories/deep-learning/'>Deep-Learning</a>, <a class='category' href='/blog/categories/machine-learning/'>Machine-Learning</a>, <a class='category' href='/blog/categories/neural-network/'>Neural-Network</a>, <a class='category' href='/blog/categories/paper-review/'>Paper-Review</a>, <a class='category' href='/blog/categories/research/'>Research</a></span>
</article>
<p class="mB40">subscribe via <a href="/atom.xml" rel="subscribe-rss" title="subscribe via RSS">RSS</a></p>
<div class="m20">
<a href="/archives">Go to Archives</a>
</div>
<div class="m20">
<a class="prev" href="/blog/page/2/">← Older Posts</a>
</div>
</div>
</div>
</div>
<footer role="contentinfo"><p>
Copyright © 2019 - Sanghyuk Chun -
<span class="credit">Powered by <a href="http://octopress.org">Octopress</a></span>
</p>
</footer>
<script type="text/javascript">
var disqus_shortname = 'sanghyukchun';
var disqus_script = 'count.js';
(function () {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/' + disqus_script;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
}());
</script>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js#appId=182012898639519&xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
</body>
</html>