Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Part1_TensorFlow.ipynb #152

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lab1/Part1_TensorFlow.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@
"# You can think of this as 10 images where each image is RGB 256 x 256.\n",
"images = # TODO\n",
"\n",
"assert isinstance(images, tf.Tensor), \"matrix must be a tf Tensor object\"\n",
"assert tf.rank(images).numpy() == 4, \"matrix must be of rank 4\"\n",
"assert isinstance(images, tf.Tensor), \"images must be a tf Tensor object\"\n",
"assert tf.rank(images).numpy() == 4, \"images must be of rank 4\"\n",
"assert tf.shape(images).numpy().tolist() == [10, 256, 256, 3], \"matrix is incorrect shape\""
]
},
Expand Down Expand Up @@ -695,4 +695,4 @@
},
"nbformat": 4,
"nbformat_minor": 0
}
}