We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 409b3df commit 5c4fcbdCopy full SHA for 5c4fcbd
lab1/Part1_TensorFlow.ipynb
@@ -82,7 +82,7 @@
82
"%tensorflow_version 2.x\n",
83
"import tensorflow as tf\n",
84
"\n",
85
- "# Download and import the MIT Introduction to Deep Learning package\n",
+ "# Download and import the MIT 6.S191 package\n",
86
"!pip install mitdeeplearning\n",
87
"import mitdeeplearning as mdl\n",
88
@@ -206,8 +206,8 @@
206
},
207
"source": [
208
"row_vector = matrix[1]\n",
209
- "column_vector = matrix[:,1]\n",
210
- "scalar = matrix[0, 1]\n",
+ "column_vector = matrix[:,2]\n",
+ "scalar = matrix[1, 2]\n",
211
212
"print(\"`row_vector`: {}\".format(row_vector.numpy()))\n",
213
"print(\"`column_vector`: {}\".format(column_vector.numpy()))\n",
0 commit comments