In tensorflow tutorial for word embedding one finds:
# Placeholders for inputs
train_inputs = tf.placeholder(tf.int32, shape=[batch_size])
train_labels = tf.placeholder(tf.int32, shape=[batch_size, 1])
What is possibly the difference between these two placeholders. Aren't they both a int32 column vector of size batch_size?
Thanks.