Open
Changes from all commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff 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 DownExpand Up@@ -695,4 +695,4 @@
},
"nbformat": 4,
"nbformat_minor": 0
}
}