i just have a brief question about the tensorflow reshape function. In tensorflow, you can initialize the shape of tensor placeholders with shape = (None, shape1, shape2, .. ). Now i looked at the reshape function and there they used -1 for the new reshape,
e.g. new_tensor = tf.reshape(old_tensor, shape = (-1 , shape1, shape2, .. ) )
Is -1 equivalent to None ? And if not, what's the difference between these two?