TensorFlow

Tensor Shapes

Learn Tensor Shapes in TensorFlow with a tiny example and expected output.

Tensor Shapes is part of the TensorFlow roadmap. Use the example below and continue with the next topic.

Syntax
x = tf.zeros((32, 128))
print(x.shape)
Example