TypeError: (‘Keyword argument not understood:’, ‘inputs’)
it is not understanding inputs as kwarg
Here is the code-
https://colab.research.google.com/drive/1f3AvNEJEo4MaLZ2vKjRpsifke7rquDS7?usp=sharing
TypeError: (‘Keyword argument not understood:’, ‘inputs’)
it is not understanding inputs as kwarg
Here is the code-
https://colab.research.google.com/drive/1f3AvNEJEo4MaLZ2vKjRpsifke7rquDS7?usp=sharing
Hey @sanchit123manchanda, please refer the following format,
model = tf.keras.Model(inputs=inputs, outputs=outputs)
Try to correct outputs
in your syntax.
I hope this helps !
Happy Learning !