I made a model using Keras with Tensorflow. I use Inputlayer with these lines of code:
Inputlayer
img1 = tf.placeholder(tf.float32, shape=(None, img_width, i
According to tensorflow website, "It is generally recommend to use the functional layer API via Input, (which creates an InputLayer) without directly using InputLayer." Know more at this page here