|
10 | 10 | {
|
11 | 11 | "cell_type": "code",
|
12 | 12 | "execution_count": 1,
|
13 |
| - "metadata": { |
14 |
| - "collapsed": true |
15 |
| - }, |
| 13 | + "metadata": {}, |
16 | 14 | "outputs": [],
|
17 | 15 | "source": [
|
18 | 16 | "import os\n",
|
|
31 | 29 | {
|
32 | 30 | "cell_type": "code",
|
33 | 31 | "execution_count": 2,
|
34 |
| - "metadata": { |
35 |
| - "collapsed": true |
36 |
| - }, |
| 32 | + "metadata": {}, |
37 | 33 | "outputs": [],
|
38 | 34 | "source": [
|
39 | 35 | "if not os.path.exists('static-files'):\n",
|
|
53 | 49 | {
|
54 | 50 | "cell_type": "code",
|
55 | 51 | "execution_count": 3,
|
56 |
| - "metadata": { |
57 |
| - "collapsed": true |
58 |
| - }, |
| 52 | + "metadata": {}, |
59 | 53 | "outputs": [],
|
60 | 54 | "source": [
|
61 | 55 | "folders = ['01-python-tools', \n",
|
|
83 | 77 | {
|
84 | 78 | "cell_type": "code",
|
85 | 79 | "execution_count": 4,
|
86 |
| - "metadata": { |
87 |
| - "collapsed": false |
88 |
| - }, |
| 80 | + "metadata": {}, |
89 | 81 | "outputs": [],
|
90 | 82 | "source": [
|
91 | 83 | "file_names = []\n",
|
|
98 | 90 | {
|
99 | 91 | "cell_type": "code",
|
100 | 92 | "execution_count": 5,
|
101 |
| - "metadata": { |
102 |
| - "collapsed": false |
103 |
| - }, |
| 93 | + "metadata": {}, |
104 | 94 | "outputs": [],
|
105 | 95 | "source": [
|
106 | 96 | "def convert_to_files(names, to_format):\n",
|
107 | 97 | " target_dir = os.path.join(\"static-files\", to_format)\n",
|
108 | 98 | " for folder in folders:\n",
|
109 | 99 | " if not os.path.exists(os.path.join(target_dir, folder)):\n",
|
110 | 100 | " os.makedirs(os.path.join(target_dir, folder))\n",
|
111 |
| - " converter = {\n", |
112 |
| - " \"html\": nbconvert.export_html,\n", |
113 |
| - " \"python\": nbconvert.export_python\n", |
114 |
| - " }\n", |
115 | 101 | " \n",
|
116 | 102 | " for file_name in names:\n",
|
117 |
| - " p = converter[to_format](file_name)\n", |
| 103 | + " p = nbconvert.export(nbconvert.get_exporter(to_format), file_name)\n", |
118 | 104 | " with open(os.path.join(target_dir, file_name[:-6] + p[1][\"output_extension\"]), 'w') as f:\n",
|
119 | 105 | " f.write(p[0].encode(\"utf-8\"))\n",
|
120 | 106 | " print file_name"
|
|
130 | 116 | {
|
131 | 117 | "cell_type": "code",
|
132 | 118 | "execution_count": 6,
|
133 |
| - "metadata": { |
134 |
| - "collapsed": false |
135 |
| - }, |
| 119 | + "metadata": {}, |
136 | 120 | "outputs": [
|
137 | 121 | {
|
138 | 122 | "name": "stdout",
|
139 | 123 | "output_type": "stream",
|
140 | 124 | "text": [
|
141 |
| - "01-python-tools\\01.01-python-overview.ipynb\n", |
142 |
| - "01-python-tools\\01.02-ipython-interpreter.ipynb\n", |
143 |
| - "01-python-tools\\01.03-ipython-notebook.ipynb\n", |
144 |
| - "01-python-tools\\01.04-use-anaconda.ipynb\n", |
145 |
| - "02-python-essentials\\02.01-a-tour-of-python.ipynb\n", |
146 |
| - "02-python-essentials\\02.02-python-data-types.ipynb\n", |
147 |
| - "02-python-essentials\\02.03-numbers.ipynb\n", |
148 |
| - "02-python-essentials\\02.04-strings.ipynb\n", |
149 |
| - "02-python-essentials\\02.05-indexing-and-slicing.ipynb\n", |
150 |
| - "02-python-essentials\\02.06-lists.ipynb\n", |
151 |
| - "02-python-essentials\\02.07-mutable-and-immutable-data-types.ipynb\n", |
152 |
| - "02-python-essentials\\02.08-tuples.ipynb\n", |
153 |
| - "02-python-essentials\\02.09-speed-comparison-between-list-&-tuple.ipynb\n", |
154 |
| - "02-python-essentials\\02.10-dictionaries.ipynb\n", |
155 |
| - "02-python-essentials\\02.11-sets.ipynb\n", |
156 |
| - "02-python-essentials\\02.12-frozen-sets.ipynb\n", |
157 |
| - "02-python-essentials\\02.13-how-python-assignment-works.ipynb\n", |
158 |
| - "02-python-essentials\\02.14-if-statement.ipynb\n", |
159 |
| - "02-python-essentials\\02.15-loops.ipynb\n", |
160 |
| - "02-python-essentials\\02.16-list-comprehension.ipynb\n", |
161 |
| - "02-python-essentials\\02.17-functions.ipynb\n", |
162 |
| - "02-python-essentials\\02.18-modules-and-packages.ipynb\n", |
163 |
| - "02-python-essentials\\02.19-exceptions.ipynb\n", |
164 |
| - "02-python-essentials\\02.20-warnings.ipynb\n", |
165 |
| - "02-python-essentials\\02.21-file-IO.ipynb\n", |
166 |
| - "03-numpy\\03.01-numpy-overview.ipynb\n", |
167 |
| - "03-numpy\\03.02-matplotlib-basics.ipynb\n", |
168 |
| - "03-numpy\\03.03-numpy-arrays.ipynb\n", |
169 |
| - "03-numpy\\03.04-array-types.ipynb\n", |
170 |
| - "03-numpy\\03.05-array-calculation-method.ipynb\n", |
171 |
| - "03-numpy\\03.06-sorting-numpy-arrays.ipynb\n", |
172 |
| - "03-numpy\\03.07-array-shapes.ipynb\n", |
173 |
| - "03-numpy\\03.08-diagonals.ipynb\n", |
174 |
| - "03-numpy\\03.09-data-to-&-from-string.ipynb\n", |
175 |
| - "03-numpy\\03.10-array-attribute-&-method-overview-.ipynb\n", |
176 |
| - "03-numpy\\03.11-array-creation-functions.ipynb\n", |
177 |
| - "03-numpy\\03.12-matrix-object.ipynb\n", |
178 |
| - "03-numpy\\03.13-general-functions.ipynb\n", |
179 |
| - "03-numpy\\03.14-vectorizing-functions.ipynb\n", |
180 |
| - "03-numpy\\03.15-binary-operators.ipynb\n", |
181 |
| - "03-numpy\\03.16-universal-functions.ipynb\n", |
182 |
| - "03-numpy\\03.17-choose.ipynb\n", |
183 |
| - "03-numpy\\03.18-array-broadcasting.ipynb\n", |
184 |
| - "03-numpy\\03.19-reading-and-writing-arrays.ipynb\n", |
185 |
| - "03-numpy\\03.20-structured-arrays.ipynb\n", |
186 |
| - "03-numpy\\03.21-record-arrays.ipynb\n", |
187 |
| - "03-numpy\\03.22-memory-maps.ipynb\n", |
188 |
| - "03-numpy\\03.23-from-matlab-to-numpy.ipynb\n", |
189 |
| - "04-scipy\\04.01-scienticfic-python-overview.ipynb\n", |
190 |
| - "04-scipy\\04.02-interpolation-with-scipy.ipynb\n", |
191 |
| - "04-scipy\\04.03-statistics-with-scipy.ipynb\n", |
192 |
| - "04-scipy\\04.04-curve-fitting.ipynb\n", |
193 |
| - "04-scipy\\04.05-minimization-in-python.ipynb\n", |
194 |
| - "04-scipy\\04.06-integration-in-python.ipynb\n", |
195 |
| - "04-scipy\\04.07-ODEs.ipynb\n", |
196 |
| - "04-scipy\\04.08-sparse-matrix.ipynb\n", |
197 |
| - "04-scipy\\04.09-linear-algbra.ipynb\n", |
198 |
| - "04-scipy\\04.10-sparse-linear-algebra.ipynb\n", |
199 |
| - "05-advanced-python\\05.01-overview-of-the-sys-module.ipynb\n", |
200 |
| - "05-advanced-python\\05.02-interacting-with-the-OS---os.ipynb\n", |
201 |
| - "05-advanced-python\\05.03-comma-separated-values.ipynb\n", |
202 |
| - "05-advanced-python\\05.04-regular-expression.ipynb\n", |
203 |
| - "05-advanced-python\\05.05-datetime.ipynb\n", |
204 |
| - "05-advanced-python\\05.06-sql-databases.ipynb\n", |
205 |
| - "05-advanced-python\\05.07-object-relational-mappers.ipynb\n", |
206 |
| - "05-advanced-python\\05.08-functions.ipynb\n", |
207 |
| - "05-advanced-python\\05.09-iterators.ipynb\n", |
208 |
| - "05-advanced-python\\05.10-generators.ipynb\n", |
209 |
| - "05-advanced-python\\05.11-context-managers-and-the-with-statement.ipynb\n", |
210 |
| - "05-advanced-python\\05.12-decorators.ipynb\n", |
211 |
| - "05-advanced-python\\05.13-decorator-usage.ipynb\n", |
212 |
| - "05-advanced-python\\05.14-the-operator-functools-itertools-toolz-fn-funcy-module.ipynb\n", |
213 |
| - "05-advanced-python\\05.15-scope.ipynb\n", |
214 |
| - "05-advanced-python\\05.16-dynamic-code-execution.ipynb\n", |
215 |
| - "06-matplotlib\\06.01-pyplot-tutorial.ipynb\n", |
216 |
| - "06-matplotlib\\06.02-customizing-plots-with-style-sheets.ipynb\n", |
217 |
| - "06-matplotlib\\06.03-working-with-text---basic.ipynb\n", |
218 |
| - "06-matplotlib\\06.04-working-with-text---math-expression.ipynb\n", |
219 |
| - "06-matplotlib\\06.05-image-tutorial.ipynb\n", |
220 |
| - "06-matplotlib\\06.06-annotating-axes.ipynb\n", |
221 |
| - "06-matplotlib\\06.07-legend.ipynb\n", |
222 |
| - "06-matplotlib\\06.08-figures,-subplots,-axes-and-ticks.ipynb\n", |
223 |
| - "06-matplotlib\\06.09-do-not-trust-the-defaults.ipynb\n", |
224 |
| - "06-matplotlib\\06.10-different-plots.ipynb\n", |
225 |
| - "07-interfacing-with-other-languages\\07.01-introduction.ipynb\n", |
226 |
| - "07-interfacing-with-other-languages\\07.02-python-extension-modules.ipynb\n", |
227 |
| - "07-interfacing-with-other-languages\\07.03-cython-part-1.ipynb\n", |
228 |
| - "07-interfacing-with-other-languages\\07.04-cython-part-2.ipynb\n", |
229 |
| - "07-interfacing-with-other-languages\\07.05-cython-part-3.ipynb\n", |
230 |
| - "07-interfacing-with-other-languages\\07.06-cython-part-4.ipynb\n", |
231 |
| - "07-interfacing-with-other-languages\\07.07-profiling-with-annotations.ipynb\n", |
232 |
| - "07-interfacing-with-other-languages\\07.08-ctypes.ipynb\n", |
233 |
| - "08-object-oriented-programming\\08.01-oop-introduction.ipynb\n", |
234 |
| - "08-object-oriented-programming\\08.02-using-oop-model-a-forest-fire.ipynb\n", |
235 |
| - "08-object-oriented-programming\\08.03-what-is-a-object.ipynb\n", |
236 |
| - "08-object-oriented-programming\\08.04-writing-classes.ipynb\n", |
237 |
| - "08-object-oriented-programming\\08.05-special-method.ipynb\n", |
238 |
| - "08-object-oriented-programming\\08.06-properties.ipynb\n", |
239 |
| - "08-object-oriented-programming\\08.07-forest-fire-simulation.ipynb\n", |
240 |
| - "08-object-oriented-programming\\08.08-inheritance.ipynb\n", |
241 |
| - "08-object-oriented-programming\\08.09-super.ipynb\n", |
242 |
| - "08-object-oriented-programming\\08.10-refactoring-the-forest-fire-simutation.ipynb\n", |
243 |
| - "08-object-oriented-programming\\08.11-interfaces.ipynb\n", |
244 |
| - "08-object-oriented-programming\\08.12-public-private-special-in-python.ipynb\n", |
245 |
| - "08-object-oriented-programming\\08.13-multiple-inheritance.ipynb\n", |
246 |
| - "09-theano\\09.01-introduction-and-installation.ipynb\n", |
247 |
| - "09-theano\\09.02-theano-basics.ipynb\n", |
248 |
| - "09-theano\\09.03-gpu-on-windows.ipynb\n", |
249 |
| - "09-theano\\09.04-graph-structures.ipynb\n", |
250 |
| - "09-theano\\09.05-configuration-settings-and-compiling-modes.ipynb\n", |
251 |
| - "09-theano\\09.06-conditions-in-theano.ipynb\n", |
252 |
| - "09-theano\\09.07-loop-with-scan.ipynb\n", |
253 |
| - "09-theano\\09.08-linear-regression.ipynb\n", |
254 |
| - "09-theano\\09.09-logistic-regression-.ipynb\n", |
255 |
| - "09-theano\\09.10-softmax-on-mnist.ipynb\n", |
256 |
| - "09-theano\\09.11-net-on-mnist.ipynb\n", |
257 |
| - "09-theano\\09.12-random-streams.ipynb\n", |
258 |
| - "09-theano\\09.13-modern-net-on-mnist.ipynb\n", |
259 |
| - "09-theano\\09.14-convolutional-net-on-mnist.ipynb\n", |
260 |
| - "09-theano\\09.15-tensor-basics.ipynb\n", |
261 |
| - "09-theano\\09.16-tensor-indexing.ipynb\n", |
262 |
| - "09-theano\\09.17-tensor-operator-and-elementwise-operations.ipynb\n", |
263 |
| - "09-theano\\09.18-tensor-nnet-.ipynb\n", |
264 |
| - "09-theano\\09.19-tensor-conv.ipynb\n", |
265 |
| - "10-something-interesting\\10.01-maps-using-basemap.ipynb\n", |
266 |
| - "10-something-interesting\\10.02-maps-using-cartopy.ipynb\n", |
267 |
| - "10-something-interesting\\10.03-nba-data.ipynb\n", |
268 |
| - "10-something-interesting\\10.04-louis-cha's-kungfu-world.ipynb\n", |
269 |
| - "11-useful-tools\\11.01-pprint.ipynb\n", |
270 |
| - "11-useful-tools\\11.02-pickle-and-cPickle.ipynb\n", |
271 |
| - "11-useful-tools\\11.03-json.ipynb\n", |
272 |
| - "11-useful-tools\\11.04-glob.ipynb\n", |
273 |
| - "11-useful-tools\\11.05-shutil.ipynb\n", |
274 |
| - "11-useful-tools\\11.06-gzip,-zipfile,-tarfile.ipynb\n", |
275 |
| - "11-useful-tools\\11.07-logging.ipynb\n", |
276 |
| - "11-useful-tools\\11.08-string.ipynb\n", |
277 |
| - "11-useful-tools\\11.09-collections.ipynb\n", |
278 |
| - "11-useful-tools\\11.10-requests.ipynb\n", |
279 |
| - "12-pandas\\12.01-ten-minutes-to-pandas.ipynb\n", |
280 |
| - "12-pandas\\12.02-series-in-pandas.ipynb\n", |
281 |
| - "12-pandas\\12.03-dataframe-in-pandas.ipynb\n" |
| 125 | + "01-python-tools/01.01-python-overview.ipynb\n", |
| 126 | + "01-python-tools/01.02-ipython-interpreter.ipynb\n", |
| 127 | + "01-python-tools/01.03-ipython-notebook.ipynb\n", |
| 128 | + "01-python-tools/01.04-use-anaconda.ipynb\n", |
| 129 | + "02-python-essentials/02.01-a-tour-of-python.ipynb\n", |
| 130 | + "02-python-essentials/02.02-python-data-types.ipynb\n", |
| 131 | + "02-python-essentials/02.03-numbers.ipynb\n", |
| 132 | + "02-python-essentials/02.04-strings.ipynb\n", |
| 133 | + "02-python-essentials/02.05-indexing-and-slicing.ipynb\n", |
| 134 | + "02-python-essentials/02.06-lists.ipynb\n", |
| 135 | + "02-python-essentials/02.07-mutable-and-immutable-data-types.ipynb\n", |
| 136 | + "02-python-essentials/02.08-tuples.ipynb\n", |
| 137 | + "02-python-essentials/02.09-speed-comparison-between-list-&-tuple.ipynb\n", |
| 138 | + "02-python-essentials/02.10-dictionaries.ipynb\n", |
| 139 | + "02-python-essentials/02.11-sets.ipynb\n", |
| 140 | + "02-python-essentials/02.12-frozen-sets.ipynb\n", |
| 141 | + "02-python-essentials/02.13-how-python-assignment-works.ipynb\n", |
| 142 | + "02-python-essentials/02.14-if-statement.ipynb\n", |
| 143 | + "02-python-essentials/02.15-loops.ipynb\n", |
| 144 | + "02-python-essentials/02.16-list-comprehension.ipynb\n", |
| 145 | + "02-python-essentials/02.17-functions.ipynb\n", |
| 146 | + "02-python-essentials/02.18-modules-and-packages.ipynb\n", |
| 147 | + "02-python-essentials/02.19-exceptions.ipynb\n", |
| 148 | + "02-python-essentials/02.20-warnings.ipynb\n", |
| 149 | + "02-python-essentials/02.21-file-IO.ipynb\n", |
| 150 | + "03-numpy/03.01-numpy-overview.ipynb\n", |
| 151 | + "03-numpy/03.02-matplotlib-basics.ipynb\n", |
| 152 | + "03-numpy/03.03-numpy-arrays.ipynb\n", |
| 153 | + "03-numpy/03.04-array-types.ipynb\n", |
| 154 | + "03-numpy/03.05-array-calculation-method.ipynb\n", |
| 155 | + "03-numpy/03.06-sorting-numpy-arrays.ipynb\n", |
| 156 | + "03-numpy/03.07-array-shapes.ipynb\n", |
| 157 | + "03-numpy/03.08-diagonals.ipynb\n", |
| 158 | + "03-numpy/03.09-data-to-&-from-string.ipynb\n", |
| 159 | + "03-numpy/03.10-array-attribute-&-method-overview-.ipynb\n", |
| 160 | + "03-numpy/03.11-array-creation-functions.ipynb\n", |
| 161 | + "03-numpy/03.12-matrix-object.ipynb\n", |
| 162 | + "03-numpy/03.13-general-functions.ipynb\n", |
| 163 | + "03-numpy/03.14-vectorizing-functions.ipynb\n", |
| 164 | + "03-numpy/03.15-binary-operators.ipynb\n", |
| 165 | + "03-numpy/03.16-universal-functions.ipynb\n", |
| 166 | + "03-numpy/03.17-choose.ipynb\n", |
| 167 | + "03-numpy/03.18-array-broadcasting.ipynb\n", |
| 168 | + "03-numpy/03.19-reading-and-writing-arrays.ipynb\n", |
| 169 | + "03-numpy/03.20-structured-arrays.ipynb\n", |
| 170 | + "03-numpy/03.21-record-arrays.ipynb\n", |
| 171 | + "03-numpy/03.22-memory-maps.ipynb\n", |
| 172 | + "03-numpy/03.23-from-matlab-to-numpy.ipynb\n", |
| 173 | + "04-scipy/04.01-scienticfic-python-overview.ipynb\n", |
| 174 | + "04-scipy/04.02-interpolation-with-scipy.ipynb\n", |
| 175 | + "04-scipy/04.03-statistics-with-scipy.ipynb\n", |
| 176 | + "04-scipy/04.04-curve-fitting.ipynb\n", |
| 177 | + "04-scipy/04.05-minimization-in-python.ipynb\n", |
| 178 | + "04-scipy/04.06-integration-in-python.ipynb\n", |
| 179 | + "04-scipy/04.07-ODEs.ipynb\n", |
| 180 | + "04-scipy/04.08-sparse-matrix.ipynb\n", |
| 181 | + "04-scipy/04.09-linear-algbra.ipynb\n", |
| 182 | + "04-scipy/04.10-sparse-linear-algebra.ipynb\n", |
| 183 | + "05-advanced-python/05.01-overview-of-the-sys-module.ipynb\n", |
| 184 | + "05-advanced-python/05.02-interacting-with-the-OS---os.ipynb\n", |
| 185 | + "05-advanced-python/05.03-comma-separated-values.ipynb\n", |
| 186 | + "05-advanced-python/05.04-regular-expression.ipynb\n", |
| 187 | + "05-advanced-python/05.05-datetime.ipynb\n", |
| 188 | + "05-advanced-python/05.06-sql-databases.ipynb\n", |
| 189 | + "05-advanced-python/05.07-object-relational-mappers.ipynb\n", |
| 190 | + "05-advanced-python/05.08-functions.ipynb\n", |
| 191 | + "05-advanced-python/05.09-iterators.ipynb\n", |
| 192 | + "05-advanced-python/05.10-generators.ipynb\n", |
| 193 | + "05-advanced-python/05.11-context-managers-and-the-with-statement.ipynb\n", |
| 194 | + "05-advanced-python/05.12-decorators.ipynb\n", |
| 195 | + "05-advanced-python/05.13-decorator-usage.ipynb\n", |
| 196 | + "05-advanced-python/05.14-the-operator-functools-itertools-toolz-fn-funcy-module.ipynb\n", |
| 197 | + "05-advanced-python/05.15-scope.ipynb\n", |
| 198 | + "05-advanced-python/05.16-dynamic-code-execution.ipynb\n", |
| 199 | + "06-matplotlib/06.01-pyplot-tutorial.ipynb\n", |
| 200 | + "06-matplotlib/06.02-customizing-plots-with-style-sheets.ipynb\n", |
| 201 | + "06-matplotlib/06.03-working-with-text---basic.ipynb\n", |
| 202 | + "06-matplotlib/06.04-working-with-text---math-expression.ipynb\n", |
| 203 | + "06-matplotlib/06.05-image-tutorial.ipynb\n", |
| 204 | + "06-matplotlib/06.06-annotating-axes.ipynb\n", |
| 205 | + "06-matplotlib/06.07-legend.ipynb\n", |
| 206 | + "06-matplotlib/06.08-figures,-subplots,-axes-and-ticks.ipynb\n", |
| 207 | + "06-matplotlib/06.09-do-not-trust-the-defaults.ipynb\n", |
| 208 | + "06-matplotlib/06.10-different-plots.ipynb\n", |
| 209 | + "07-interfacing-with-other-languages/07.01-introduction.ipynb\n", |
| 210 | + "07-interfacing-with-other-languages/07.02-python-extension-modules.ipynb\n", |
| 211 | + "07-interfacing-with-other-languages/07.03-cython-part-1.ipynb\n", |
| 212 | + "07-interfacing-with-other-languages/07.04-cython-part-2.ipynb\n", |
| 213 | + "07-interfacing-with-other-languages/07.05-cython-part-3.ipynb\n", |
| 214 | + "07-interfacing-with-other-languages/07.06-cython-part-4.ipynb\n", |
| 215 | + "07-interfacing-with-other-languages/07.07-profiling-with-annotations.ipynb\n", |
| 216 | + "07-interfacing-with-other-languages/07.08-ctypes.ipynb\n", |
| 217 | + "08-object-oriented-programming/08.01-oop-introduction.ipynb\n", |
| 218 | + "08-object-oriented-programming/08.02-using-oop-model-a-forest-fire.ipynb\n", |
| 219 | + "08-object-oriented-programming/08.03-what-is-a-object.ipynb\n", |
| 220 | + "08-object-oriented-programming/08.04-writing-classes.ipynb\n", |
| 221 | + "08-object-oriented-programming/08.05-special-method.ipynb\n", |
| 222 | + "08-object-oriented-programming/08.06-properties.ipynb\n", |
| 223 | + "08-object-oriented-programming/08.07-forest-fire-simulation.ipynb\n", |
| 224 | + "08-object-oriented-programming/08.08-inheritance.ipynb\n", |
| 225 | + "08-object-oriented-programming/08.09-super.ipynb\n", |
| 226 | + "08-object-oriented-programming/08.10-refactoring-the-forest-fire-simutation.ipynb\n", |
| 227 | + "08-object-oriented-programming/08.11-interfaces.ipynb\n", |
| 228 | + "08-object-oriented-programming/08.12-public-private-special-in-python.ipynb\n", |
| 229 | + "08-object-oriented-programming/08.13-multiple-inheritance.ipynb\n", |
| 230 | + "09-theano/09.01-introduction-and-installation.ipynb\n", |
| 231 | + "09-theano/09.02-theano-basics.ipynb\n", |
| 232 | + "09-theano/09.03-gpu-on-windows.ipynb\n", |
| 233 | + "09-theano/09.04-graph-structures.ipynb\n", |
| 234 | + "09-theano/09.05-configuration-settings-and-compiling-modes.ipynb\n", |
| 235 | + "09-theano/09.06-conditions-in-theano.ipynb\n", |
| 236 | + "09-theano/09.07-loop-with-scan.ipynb\n", |
| 237 | + "09-theano/09.08-linear-regression.ipynb\n", |
| 238 | + "09-theano/09.09-logistic-regression-.ipynb\n", |
| 239 | + "09-theano/09.10-softmax-on-mnist.ipynb\n", |
| 240 | + "09-theano/09.11-net-on-mnist.ipynb\n", |
| 241 | + "09-theano/09.12-random-streams.ipynb\n", |
| 242 | + "09-theano/09.13-modern-net-on-mnist.ipynb\n", |
| 243 | + "09-theano/09.14-convolutional-net-on-mnist.ipynb\n", |
| 244 | + "09-theano/09.15-tensor-basics.ipynb\n", |
| 245 | + "09-theano/09.16-tensor-indexing.ipynb\n", |
| 246 | + "09-theano/09.17-tensor-operator-and-elementwise-operations.ipynb\n", |
| 247 | + "09-theano/09.18-tensor-nnet-.ipynb\n", |
| 248 | + "09-theano/09.19-tensor-conv.ipynb\n", |
| 249 | + "10-something-interesting/10.01-maps-using-basemap.ipynb\n", |
| 250 | + "10-something-interesting/10.02-maps-using-cartopy.ipynb\n", |
| 251 | + "10-something-interesting/10.03-nba-data.ipynb\n", |
| 252 | + "10-something-interesting/10.04-louis-cha's-kungfu-world.ipynb\n", |
| 253 | + "11-useful-tools/11.01-pprint.ipynb\n", |
| 254 | + "11-useful-tools/11.02-pickle-and-cPickle.ipynb\n", |
| 255 | + "11-useful-tools/11.03-json.ipynb\n", |
| 256 | + "11-useful-tools/11.04-glob.ipynb\n", |
| 257 | + "11-useful-tools/11.05-shutil.ipynb\n", |
| 258 | + "11-useful-tools/11.06-gzip,-zipfile,-tarfile.ipynb\n", |
| 259 | + "11-useful-tools/11.07-logging.ipynb\n", |
| 260 | + "11-useful-tools/11.08-string.ipynb\n", |
| 261 | + "11-useful-tools/11.09-collections.ipynb\n", |
| 262 | + "11-useful-tools/11.10-requests.ipynb\n", |
| 263 | + "12-pandas/12.01-ten-minutes-to-pandas.ipynb\n", |
| 264 | + "12-pandas/12.02-series-in-pandas.ipynb\n", |
| 265 | + "12-pandas/12.03-dataframe-in-pandas.ipynb\n" |
282 | 266 | ]
|
283 | 267 | }
|
284 | 268 | ],
|
|
296 | 280 | {
|
297 | 281 | "cell_type": "code",
|
298 | 282 | "execution_count": 7,
|
299 |
| - "metadata": { |
300 |
| - "collapsed": false |
301 |
| - }, |
| 283 | + "metadata": {}, |
302 | 284 | "outputs": [],
|
303 | 285 | "source": [
|
304 | 286 | "with open('index.md') as f:\n",
|
|
324 | 306 | "name": "python",
|
325 | 307 | "nbconvert_exporter": "python",
|
326 | 308 | "pygments_lexer": "ipython2",
|
327 |
| - "version": "2.7.11" |
| 309 | + "version": "2.7.14" |
328 | 310 | }
|
329 | 311 | },
|
330 | 312 | "nbformat": 4,
|
331 |
| - "nbformat_minor": 0 |
| 313 | + "nbformat_minor": 1 |
332 | 314 | }
|
0 commit comments