I have a placeholder which shape is [None, dimension], "None" means batch size. I want to get the real shape of "None".
I try two methods when I build model:
First, x.get_shape() and get shape as [Dimension(None), Dimension(128)]
Second, x.shape and get shape as [Dimension(None), Dimension(128)]
And what I want is the real shape, for example, when the batch size is 100 in this round, I would like to get [Dimension(100), Dimension(128)].
How do I get the dynamic input shape?