You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have discovered a little typo: "For example, a rank 3 placeholder of type float and shape 3x4x5 can be defined as: tf.placeholder(type=tf.float32, shape=[2, 3, 4])".
It should be:
"For example, a rank 3 placeholder of type float and shape 2x3x4 can be defined as: tf.placeholder(type=tf.float32, shape=[2, 3, 4])"
or
"For example, a rank 3 placeholder of type float and shape 3x4x5 can be defined as: tf.placeholder(type=tf.float32, shape=[3, 4, 5])"
Thank you!
The text was updated successfully, but these errors were encountered:
Hello,
I have discovered a little typo: "For example, a rank 3 placeholder of type
float
and shape3x4x5
can be defined as:tf.placeholder(type=tf.float32, shape=[2, 3, 4])
".It should be:
"For example, a rank 3 placeholder of type
float
and shape2x3x4
can be defined as:tf.placeholder(type=tf.float32, shape=[2, 3, 4])
"or
"For example, a rank 3 placeholder of type
float
and shape3x4x5
can be defined as:tf.placeholder(type=tf.float32, shape=[3, 4, 5])
"Thank you!
The text was updated successfully, but these errors were encountered: