From dc584421f61eb80941e1ab756602b9560a2a7709 Mon Sep 17 00:00:00 2001 From: gae7 <50627877+gae7@users.noreply.github.com> Date: Sun, 7 Mar 2021 11:25:47 +0100 Subject: [PATCH] Update 12_custom_models_and_training_with_tensorflow.ipynb --- 12_custom_models_and_training_with_tensorflow.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/12_custom_models_and_training_with_tensorflow.ipynb b/12_custom_models_and_training_with_tensorflow.ipynb index 2826b8a..60613bd 100644 --- a/12_custom_models_and_training_with_tensorflow.ipynb +++ b/12_custom_models_and_training_with_tensorflow.ipynb @@ -2890,7 +2890,7 @@ "result = tf_cube(3)\n", "result = tf_cube(tf.constant([[1., 2.]])) # New shape: trace!\n", "result = tf_cube(tf.constant([[3., 4.], [5., 6.]])) # New shape: trace!\n", - "result = tf_cube(tf.constant([[7., 8.], [9., 10.], [11., 12.]])) # no trace" + "result = tf_cube(tf.constant([[7., 8.], [9., 10.], [11., 12.]])) # New shape: trace!\n" ] }, {