I have a placeholder with the shape that depends on another placeholder. How can I connect them during the placeholder initialization?
nUsers = tf.placeholder(tf.float32, [None, 1])
p = tf.placeholder(tf.float32, [None, 10 , ???] )
...in ??? I need to put the size given by the number present in nUsers for that item of the batch.