Skip to content

Commit d61cdbb

Browse files
committed
images for assign 2
1 parent 8255501 commit d61cdbb

File tree

9 files changed

+4588
-450
lines changed

9 files changed

+4588
-450
lines changed

.DS_Store

0 Bytes
Binary file not shown.

TensorFlow/.DS_Store

0 Bytes
Binary file not shown.
6 KB
Binary file not shown.
418 KB
Loading
289 KB
Loading

TensorFlow/Udacity/.ipynb_checkpoints/4_convolutions-checkpoint.ipynb

Lines changed: 1074 additions & 0 deletions
Large diffs are not rendered by default.

TensorFlow/Udacity/.ipynb_checkpoints/4_ref_convolutions-checkpoint.ipynb

Lines changed: 2411 additions & 0 deletions
Large diffs are not rendered by default.

TensorFlow/Udacity/2_fullyconnected.ipynb

Lines changed: 47 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
{
2222
"cell_type": "code",
23-
"execution_count": 19,
23+
"execution_count": 22,
2424
"metadata": {
2525
"cellView": "both",
2626
"colab": {
@@ -56,7 +56,7 @@
5656
},
5757
{
5858
"cell_type": "code",
59-
"execution_count": 20,
59+
"execution_count": 23,
6060
"metadata": {
6161
"cellView": "both",
6262
"colab": {
@@ -133,7 +133,7 @@
133133
},
134134
{
135135
"cell_type": "code",
136-
"execution_count": 21,
136+
"execution_count": 24,
137137
"metadata": {
138138
"cellView": "both",
139139
"colab": {
@@ -196,6 +196,50 @@
196196
"print('Test set', test_dataset.shape, test_labels.shape)"
197197
]
198198
},
199+
{
200+
"cell_type": "code",
201+
"execution_count": 25,
202+
"metadata": {
203+
"collapsed": false
204+
},
205+
"outputs": [
206+
{
207+
"data": {
208+
"text/plain": [
209+
"(200000, 784)"
210+
]
211+
},
212+
"execution_count": 25,
213+
"metadata": {},
214+
"output_type": "execute_result"
215+
}
216+
],
217+
"source": [
218+
"np.shape(train_dataset.reshape((-1, 28*28)))"
219+
]
220+
},
221+
{
222+
"cell_type": "code",
223+
"execution_count": 27,
224+
"metadata": {
225+
"collapsed": false
226+
},
227+
"outputs": [
228+
{
229+
"data": {
230+
"text/plain": [
231+
"array([ 0., 1.], dtype=float32)"
232+
]
233+
},
234+
"execution_count": 27,
235+
"metadata": {},
236+
"output_type": "execute_result"
237+
}
238+
],
239+
"source": [
240+
"np.unique(train_labels)"
241+
]
242+
},
199243
{
200244
"cell_type": "markdown",
201245
"metadata": {

0 commit comments

Comments
 (0)