I am beginning to work with Python and TensorFlow machine learning.
I am working through an example where I create a simple tensor representing a matrix with two rows and three columns of floats:
t = tf.constant([[1., 2., 3.], [4., 5., 6.]])
The tutorial then provides the following code:
t[..., 1, tf.newaxis]
I am wondering what the ellipsis ... stands for?
I cannot find any reference to this syntax in the Tensorflow API.