Skip to content

Commit 08ad950

Browse files
author
fahimfarhan
committed
✏️ Fix a typing mistake from 'incorrect' to 'in correct'
1 parent 2ed6465 commit 08ad950

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lab1/Part1_TensorFlow.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
"\n",
186186
"assert isinstance(images, tf.Tensor), \"matrix must be a tf Tensor object\"\n",
187187
"assert tf.rank(images).numpy() == 4, \"matrix must be of rank 4\"\n",
188-
"assert tf.shape(images).numpy().tolist() == [10, 256, 256, 3], \"matrix is incorrect shape\""
188+
"assert tf.shape(images).numpy().tolist() == [10, 256, 256, 3], \"matrix is in correct shape\""
189189
],
190190
"execution_count": null,
191191
"outputs": []

lab1/solutions/Part1_TensorFlow_Solution.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
"\n",
187187
"assert isinstance(images, tf.Tensor), \"matrix must be a tf Tensor object\"\n",
188188
"assert tf.rank(images).numpy() == 4, \"matrix must be of rank 4\"\n",
189-
"assert tf.shape(images).numpy().tolist() == [10, 256, 256, 3], \"matrix is incorrect shape\""
189+
"assert tf.shape(images).numpy().tolist() == [10, 256, 256, 3], \"matrix is in correct shape\""
190190
],
191191
"execution_count": null,
192192
"outputs": []

0 commit comments

Comments
 (0)