-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
134 lines (134 loc) · 5.54 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
<!doctype html>
<html lang="en">
<head>
<!--Latex css-->
<link rel="stylesheet" href="https://latex.now.sh/style.css">
<!--Code highlighting-->
<link rel="stylesheet" href="https://latex.now.sh/prism/prism.css">
<script src="https://cdn.jsdelivr.net/npm/prismjs/prism.min.js"></script>
<!--Misc-->
<meta charset="UTF-8">
<title>Asier Serrano personal webpage & blog.</title>
<meta name="description" content="Open source, maths & more.">
<meta name="keywords" content="open source, reinforcement learning, maths, qlearning, openai gym">
<meta property="og:title" content="Asier Serrano">
<meta property="og:description" content="A blog & website to explain more in depth my process of thinking and coming up with solutions that are then open sourced on GitHub. Specially focused on reinforcement learning by now.">
<meta property="og:type" content="website">
<!--No cache, to refresh on GitHub pages fast.-->
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
</head>
<body id="top">
<!-- Header, always present -->
<span class="sidenote left">
<a href="https://asicoderofficial.github.io/asiweb.github.io/">
<img src="logos/logo.png" width="200" height="100">
</a>
</span>
<span class="sidenote">
<a href="https://github.com/asicoderOfficial">
<img src="logos/GitHub-logo.png">
</a>
</span>
<span class="sidenote">
<a href="https://www.linkedin.com/in/asierserrano/">
<img src="logos/Linkedin-logo.png">
</a>
</span>
<header>
<h1><span class="latex">Asier Serrano</h1>
<p class="author">
Personal webpage and blog.<br>
</p>
</header>
<!-- Main page -->
<div class="abstract">
<h2>Abstract</h2>
<p>Reinforcement learning, open source and more.</p>
</div>
<nav role="navigation">
<!-- Index of contents-->
<span class="sidenote"><b>TAGS</b></span>
<h2>Contents</h2>
<ol>
<li>
<a href="https://asicoderofficial.github.io/asiweb.github.io/html/rl/rl.html">Reinforcement learning</a>
</li>
<ol>
<!-- MODEL BASED -->
<li>
<a href="https://asicoderofficial.github.io/asiweb.github.io/html/rl/model-based/model-based.html">Model-based</a>
</li>
<ol>
<li>
<a href="https://asicoderofficial.github.io/asiweb.github.io/html/rl/model-based/value-policy-iteration/">Value & policy iteration</a>
</li>
<ol>
<li>
<a href="https://asicoderofficial.github.io/asiweb.github.io/html/rl/model-based/value-policy-iteration/frozen-lake/frozen-lake.html">Frozen lake</a>
<span class="sidenote">
<button style="pointer-events: none;">Very easy</button>
<button style="pointer-events: none;">Gym</button>
</span>
</li>
</ol>
</ol>
<!-- MODEL FREE -->
<li>
<a href="https://asicoderofficial.github.io/asiweb.github.io/html/rl/model-free/model-free.html">Model-free</a>
</li>
<ol>
<li>
<a href="https://asicoderofficial.github.io/asiweb.github.io/html/rl/model-free/gradient-based/gradient-based.html">Gradient-based</a>
</li>
<li>
<a href="https://asicoderofficial.github.io/asiweb.github.io/html/rl/model-free/gradient-free/gradient-free.html">Gradient-free</a>
</li>
<ol>
<li>
<!-- ON POLICY-->
<a href="https://asicoderofficial.github.io/asiweb.github.io/html/rl/model-free/gradient-free/on-policy/on-policy.html">On-policy</a>
</li>
<!-- OFF POLICY-->
<li>
<a href="https://asicoderofficial.github.io/asiweb.github.io/html/rl/model-free/gradient-free/off-policy/off-policy.html">Off-policy</a>
</li>
<ol>
<li>
<a href="https://asicoderofficial.github.io/asiweb.github.io/html/rl/model-free/gradient-free/off-policy/q-learning/q-learning.html">Q learning</a>
</li>
<ol>
<li>
<a href="https://asicoderofficial.github.io/asiweb.github.io/html/rl/model-free/gradient-free/off-policy/q-learning/mountaincar-discrete/mountaincar-discrete.html">Discrete mountain car</a>
<span class="sidenote">
<button style="pointer-events: none;">Easy</button>
<button style="pointer-events: none;">Gym</button>
</span>
</li>
</ol>
</ol>
</ol>
</ol>
</ol>
<li>
<a href="https://asicoderofficial.github.io/asiweb.github.io/html/dl-teaching/dl-teaching.html">DL teaching</a>
<ol>
<li>
<a href="https://asicoderofficial.github.io/asiweb.github.io/html/dl-teaching/basics/basics.html">The basics</a>
</li>
</ol>
<li>
<a href="https://asicoderofficial.github.io/asiweb.github.io/html/resources/resources.html">Resources collection</a>
</li>
</li>
</ol>
</nav>
<div class="footnotes">
<p>
Powered by <a href="https://github.com/vincentdoerig/latex-css">LaTeX.css</a>
</p>
</div>
</nav>
</body>
</html>