-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
216 lines (148 loc) · 6.28 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us">
<head>
<link href="http://gmpg.org/xfn/11" rel="profile">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="generator" content="Hugo 0.92.2" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>Eliot Andres blog</title>
<link rel="stylesheet" href="https://ndres.me/css/print.css" media="print">
<link rel="stylesheet" href="https://ndres.me/css/poole.css">
<link rel="stylesheet" href="https://ndres.me/css/syntax.css">
<link rel="stylesheet" href="https://ndres.me/css/hyde.css">
<link rel="stylesheet" href="https://ndres.me/css/highlight.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://ndres.me/images/favicon.png">
<link rel="shortcut icon" href="https://ndres.me/images/favicon.png">
<link href="https://ndres.me/index.xml" rel="alternate" type="application/rss+xml" title="Eliot Andres blog" />
<script type="application/javascript">
var doNotTrack = false;
if (!doNotTrack) {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-105312541-1', 'auto');
ga('send', 'pageview');
}
</script>
</head>
<body class=" ">
<div class="content container">
<div class="main-nav">
<a href="/">Home</a>
|
<a href="/about_classic/">About</a>
</div>
<div class="posts">
<div class="post">
<h1 class="post-title">
<a href="https://ndres.me/post/migrating-tensorflow-2/">
Migrating to TensorFlow 2.0
</a>
</h1>
How to migrate your code to TensorFlow 2.0 </div>
<div class="post">
<h1 class="post-title">
<a href="https://ndres.me/post/approach-solve-any-machine-learning/">
My approach to solving (almost) any machine learning problem
</a>
</h1>
A technique to solve machine learning problems </div>
<div class="post">
<h1 class="post-title">
<a href="https://ndres.me/post/machine-learning-with-gifs-style-transfer/">
Machine learning explained with gifs: style transfer
</a>
</h1>
Understanding style transfer with animated gifs </div>
<div class="post">
<h1 class="post-title">
<a href="https://ndres.me/post/matplotlib-animated-gifs-easily/">
How to make animated gifs from Matplotlib plots easily
</a>
</h1>
In this tutorial, I'll show you how to export your matplotlib plots as animated gifs </div>
<div class="post">
<h1 class="post-title">
<a href="https://ndres.me/post/using-neural-network-generate-startup-name/">
Using a neural network to generate your next startup name
</a>
</h1>
I'll show you how to use a LSTM to generate startup names </div>
<div class="post">
<h1 class="post-title">
<a href="https://ndres.me/post/friend-graph-tutorial/">
Tutorial: Plotting your Facebook friend network using NetworkX and python-louvain
</a>
</h1>
Tutorial (with code) on how to plot your Facebook friend network </div>
<div class="post">
<h1 class="post-title">
<a href="https://ndres.me/post/facebook-graph-network/">
Using Facebook data to plot my friend network
</a>
</h1>
In this blog post, I'll explain how to plot a Facebook friend network </div>
<div class="post">
<h1 class="post-title">
<a href="https://ndres.me/post/best-jupyter-notebook-extensions/">
Top 5 Best Jupyter Notebook Extensions
</a>
</h1>
The best extensions to be more productive with notebooks </div>
<div class="post">
<h1 class="post-title">
<a href="https://ndres.me/about/">
</a>
</h1>
Some of my side projects </div>
<div class="post">
<h1 class="post-title">
<a href="https://ndres.me/about_classic/">
About Me
</a>
</h1>
Some of my side projects </div>
<div class="post">
<h1 class="post-title">
<a href="https://ndres.me/post/convert-caffe-to-tensorflow/">
Converting a Caffe model to TensorFlow
</a>
</h1>
In this tutorial, I'll show you how to convert the Places 365 model to TensorFlow </div>
<div class="post">
<h1 class="post-title">
<a href="https://ndres.me/post/faster-inference-tensorflow/">
Faster inference in TensorFlow using XLA.
</a>
</h1>
In this blog post, we'll investigate how to make TensorFlow faster with XLA </div>
<div class="post">
<h1 class="post-title">
<a href="https://ndres.me/post/jupyter-notebook-rest-api/">
Turn any Jupyter notebook into a REST API
</a>
</h1>
In this tutorial, I'll show you how to create a small api for your Jupyter Notebook </div>
</div>
</div>
<div class="sidebar">
<div class="container sidebar-sticky">
<div class="sidebar-about">
<a href="https://ndres.me/">
<img class="sidebar-avatar-image" class="2x" src="https://ndres.me/images/avatar.jpg"/>
</a>
<h1><a href="https://ndres.me/">Eliot Andres</a>
<a href="https://twitter.com/eliotandres"
class="twitter-follow-button"
data-show-count="false"
data-show-screen-name="false"></a></h1>
<p class="sidebar-bio">CTO at <a href="https://photoroom.com/">Photoroom</a>, author of <a href="https://amzn.to/2Znjpht">the book</a> Hands-On Computer Vision with TensorFlow 2 <a href="/about_classic/">More</a></p>
</div>
</div>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
<p class="sidebar-copyright">While the models are training: a machine learning blog</p>
</div>
</body>
</html>