Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 46e8ada

Browse files
updated notebooks for Strata
1 parent 85ddc34 commit 46e8ada

File tree

6 files changed

+327
-471
lines changed

6 files changed

+327
-471
lines changed

‎Forward Propagation.ipynb‎

Lines changed: 25 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"<h1><div align=\"center\">Deep Learning From Scratch</div></h1>\n",
8-
"<h2><div align=\"center\">Forward Propagation</div></h2>\n",
9-
"<div align=\"center\">Bruno Gonçalves</div>\n",
10-
"<div align=\"center\"><a href=\"http://www.data4sci.com/\">www.data4sci.com</a></div>\n",
11-
"<div align=\"center\">@bgoncalves, @data4sci</div>"
7+
"<div style=\"width: 100%; overflow: hidden;\">\n",
8+
" <div style=\"width: 150px; float: left;\"> <img src=\"data/D4Sci_logo_ball.png\" alt=\"Data For Science, Inc\" align=\"left\" border=\"0\"> </div>\n",
9+
" <div style=\"float: left; margin-left: 10px;\"> <h1>Deep Learning From Scratch</h1>\n",
10+
"<h2>Forward Propagation</h2>\n",
11+
" <p>Bruno Gonçalves<br/>\n",
12+
" <a href=\"http://www.data4sci.com/\">www.data4sci.com</a><br/>\n",
13+
" @bgoncalves, @data4sci</p></div>\n",
14+
"</div>"
1215
]
1316
},
1417
{
@@ -37,28 +40,29 @@
3740
"name": "stdout",
3841
"output_type": "stream",
3942
"text": [
40-
"Tue Jul 02 2019 \n",
43+
"seaborn 0.9.0\n",
44+
"numpy 1.16.2\n",
45+
"matplotlib 3.1.0\n",
46+
"pandas 0.24.2\n",
47+
"watermark 1.8.1\n",
48+
"Mon Sep 23 2019 2019年09月23日T22:01:03-04:00\n",
4149
"\n",
4250
"CPython 3.7.3\n",
43-
"IPython 7.4.0\n",
44-
"\n",
45-
"numpy 1.16.2\n",
46-
"matplotlib 3.1.0\n",
47-
"pandas 0.24.2\n",
48-
"seaborn 0.9.0\n",
51+
"IPython 6.2.1\n",
4952
"\n",
5053
"compiler : Clang 4.0.1 (tags/RELEASE_401/final)\n",
5154
"system : Darwin\n",
52-
"release : 18.6.0\n",
55+
"release : 18.7.0\n",
5356
"machine : x86_64\n",
5457
"processor : i386\n",
5558
"CPU cores : 8\n",
56-
"interpreter: 64bit\n"
59+
"interpreter: 64bit\n",
60+
"Git hash : 257ca1850405e2c214a57bc0c4ccdc6e02a54dcc\n"
5761
]
5862
}
5963
],
6064
"source": [
61-
"%watermark -n -v -m -p numpy,matplotlib,pandas,seaborn"
65+
"%watermark -i -n -v -m -g -iv"
6266
]
6367
},
6468
{
@@ -419,11 +423,13 @@
419423
]
420424
},
421425
{
422-
"cell_type": "code",
423-
"execution_count": null,
426+
"cell_type": "markdown",
424427
"metadata": {},
425-
"outputs": [],
426-
"source": []
428+
"source": [
429+
"<div style=\"width: 100%; overflow: hidden;\">\n",
430+
" <img src=\"data/D4Sci_logo_full.png\" alt=\"Data For Science, Inc\" align=\"center\" border=\"0\" width=300px> \n",
431+
"</div>"
432+
]
427433
}
428434
],
429435
"metadata": {

‎Linear Regression.ipynb‎

Lines changed: 71 additions & 66 deletions
Large diffs are not rendered by default.

‎Logistic Regression.ipynb‎

Lines changed: 59 additions & 53 deletions
Large diffs are not rendered by default.

‎Modular Network.ipynb‎

Lines changed: 50 additions & 41 deletions
Large diffs are not rendered by default.

‎Perceptron.ipynb‎

Lines changed: 39 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"<h1><div align=\"center\">Deep Learning From Scratch</div></h1>\n",
8-
"<h2><div align=\"center\">Perceptron</div></h2>\n",
9-
"<div align=\"center\">Bruno Gonçalves</div>\n",
10-
"<div align=\"center\"><a href=\"http://www.data4sci.com/\">www.data4sci.com</a></div>\n",
11-
"<div align=\"center\">@bgoncalves, @data4sci</div>"
7+
"<div style=\"width: 100%; overflow: hidden;\">\n",
8+
" <div style=\"width: 150px; float: left;\"> <img src=\"data/D4Sci_logo_ball.png\" alt=\"Data For Science, Inc\" align=\"left\" border=\"0\"> </div>\n",
9+
" <div style=\"float: left; margin-left: 10px;\"> <h1>Deep Learning From Scratch</h1>\n",
10+
"<h2>Perceptron</h2>\n",
11+
" <p>Bruno Gonçalves<br/>\n",
12+
" <a href=\"http://www.data4sci.com/\">www.data4sci.com</a><br/>\n",
13+
" @bgoncalves, @data4sci</p></div>\n",
14+
"</div>"
1215
]
1316
},
1417
{
@@ -36,26 +39,27 @@
3639
"name": "stdout",
3740
"output_type": "stream",
3841
"text": [
39-
"Tue Jul 02 2019 \n",
42+
"numpy 1.16.2\n",
43+
"watermark 1.8.1\n",
44+
"matplotlib 3.1.0\n",
45+
"Mon Sep 23 2019 2019年09月23日T22:00:35-04:00\n",
4046
"\n",
4147
"CPython 3.7.3\n",
42-
"IPython 7.4.0\n",
43-
"\n",
44-
"numpy 1.16.2\n",
45-
"matplotlib 3.1.0\n",
48+
"IPython 6.2.1\n",
4649
"\n",
4750
"compiler : Clang 4.0.1 (tags/RELEASE_401/final)\n",
4851
"system : Darwin\n",
49-
"release : 18.6.0\n",
52+
"release : 18.7.0\n",
5053
"machine : x86_64\n",
5154
"processor : i386\n",
5255
"CPU cores : 8\n",
53-
"interpreter: 64bit\n"
56+
"interpreter: 64bit\n",
57+
"Git hash : 257ca1850405e2c214a57bc0c4ccdc6e02a54dcc\n"
5458
]
5559
}
5660
],
5761
"source": [
58-
"%watermark -n -v -m -p numpy,matplotlib"
62+
"%watermark -i -n -v -m -g -iv"
5963
]
6064
},
6165
{
@@ -74,7 +78,7 @@
7478
},
7579
{
7680
"cell_type": "code",
77-
"execution_count": 4,
81+
"execution_count": 3,
7882
"metadata": {},
7983
"outputs": [],
8084
"source": [
@@ -94,7 +98,7 @@
9498
},
9599
{
96100
"cell_type": "code",
97-
"execution_count": 5,
101+
"execution_count": 4,
98102
"metadata": {},
99103
"outputs": [
100104
{
@@ -106,7 +110,7 @@
106110
" [1., 0., 0.]])"
107111
]
108112
},
109-
"execution_count": 5,
113+
"execution_count": 4,
110114
"metadata": {},
111115
"output_type": "execute_result"
112116
}
@@ -124,7 +128,7 @@
124128
},
125129
{
126130
"cell_type": "code",
127-
"execution_count": 6,
131+
"execution_count": 5,
128132
"metadata": {},
129133
"outputs": [],
130134
"source": [
@@ -148,7 +152,7 @@
148152
},
149153
{
150154
"cell_type": "code",
151-
"execution_count": 7,
155+
"execution_count": 6,
152156
"metadata": {},
153157
"outputs": [],
154158
"source": [
@@ -168,7 +172,7 @@
168172
},
169173
{
170174
"cell_type": "code",
171-
"execution_count": 9,
175+
"execution_count": 7,
172176
"metadata": {},
173177
"outputs": [],
174178
"source": [
@@ -198,7 +202,7 @@
198202
},
199203
{
200204
"cell_type": "code",
201-
"execution_count": 10,
205+
"execution_count": 8,
202206
"metadata": {},
203207
"outputs": [],
204208
"source": [
@@ -215,7 +219,7 @@
215219
},
216220
{
217221
"cell_type": "code",
218-
"execution_count": 11,
222+
"execution_count": 9,
219223
"metadata": {},
220224
"outputs": [],
221225
"source": [
@@ -232,7 +236,7 @@
232236
},
233237
{
234238
"cell_type": "code",
235-
"execution_count": 12,
239+
"execution_count": 10,
236240
"metadata": {},
237241
"outputs": [
238242
{
@@ -241,7 +245,7 @@
241245
"array([-2., 1., 2.])"
242246
]
243247
},
244-
"execution_count": 12,
248+
"execution_count": 10,
245249
"metadata": {},
246250
"output_type": "execute_result"
247251
}
@@ -252,7 +256,7 @@
252256
},
253257
{
254258
"cell_type": "code",
255-
"execution_count": 13,
259+
"execution_count": 11,
256260
"metadata": {},
257261
"outputs": [
258262
{
@@ -261,7 +265,7 @@
261265
"array([0., 1., 1.])"
262266
]
263267
},
264-
"execution_count": 13,
268+
"execution_count": 11,
265269
"metadata": {},
266270
"output_type": "execute_result"
267271
}
@@ -286,7 +290,7 @@
286290
},
287291
{
288292
"cell_type": "code",
289-
"execution_count": 15,
293+
"execution_count": 12,
290294
"metadata": {},
291295
"outputs": [],
292296
"source": [
@@ -319,7 +323,7 @@
319323
},
320324
{
321325
"cell_type": "code",
322-
"execution_count": 16,
326+
"execution_count": 13,
323327
"metadata": {},
324328
"outputs": [],
325329
"source": [
@@ -358,7 +362,7 @@
358362
},
359363
{
360364
"cell_type": "code",
361-
"execution_count": 17,
365+
"execution_count": 14,
362366
"metadata": {},
363367
"outputs": [
364368
{
@@ -387,7 +391,7 @@
387391
},
388392
{
389393
"cell_type": "code",
390-
"execution_count": 18,
394+
"execution_count": 15,
391395
"metadata": {},
392396
"outputs": [
393397
{
@@ -408,11 +412,13 @@
408412
]
409413
},
410414
{
411-
"cell_type": "code",
412-
"execution_count": null,
415+
"cell_type": "markdown",
413416
"metadata": {},
414-
"outputs": [],
415-
"source": []
417+
"source": [
418+
"<div style=\"width: 100%; overflow: hidden;\">\n",
419+
" <img src=\"data/D4Sci_logo_full.png\" alt=\"Data For Science, Inc\" align=\"center\" border=\"0\" width=300px> \n",
420+
"</div>"
421+
]
416422
}
417423
],
418424
"metadata": {

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /