From 91087c1269c6a2935451266a962ec08dc6973302 Mon Sep 17 00:00:00 2001 From: Arsam Aryandoust <33273275+ArsamAryandoust@users.noreply.github.com> Date: Thu, 11 Jan 2024 07:10:29 -0500 Subject: [PATCH] Update Part1_TensorFlow.ipynb --- lab1/Part1_TensorFlow.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lab1/Part1_TensorFlow.ipynb b/lab1/Part1_TensorFlow.ipynb index 25e4894e..c571ba44 100644 --- a/lab1/Part1_TensorFlow.ipynb +++ b/lab1/Part1_TensorFlow.ipynb @@ -170,7 +170,7 @@ "\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 tf.shape(images).numpy().tolist() == [10, 256, 256, 3], \"matrix is incorrect shape\"" + "assert tf.shape(images).numpy().tolist() == [10, 256, 256, 3], \"images has incorrect shape\"" ] }, { @@ -695,4 +695,4 @@ }, "nbformat": 4, "nbformat_minor": 0 -} \ No newline at end of file +}