While making a machine learning model in keras, I checked the shape of an element that gives the output (?,12).
I went through this stackoverflow answer but did'nt understand what exactly (?,12) shows?
While making a machine learning model in keras, I checked the shape of an element that gives the output (?,12).
I went through this stackoverflow answer but did'nt understand what exactly (?,12) shows?
it means it's a variable shape. This could be for example the batch size.
Have a look at What is the meaning of the "None" in model.summary of KERAS?