Skip to content
Advertisement

Tag: tf.keras

During creating VAE model throws exception “you should implement a `call` method.”

I want to create VAE(variational autoencoder). During model creating it throws exception. When subclassing the Model class, you should implement a call method. I am using Tensorflow 2.0 Models with names I want to get model. Answer The problem is here: You are passing three arguments to the construction, where only two are needed (inputs and outputs). Models do not

Advertisement