I am trying to recreate this example of VAE:
Variational AutoEncoder
I want to assign a validation split at the fit method:
vae.fit(x=mnist_digits, epochs=30,shuffle=True, batch_size=32,validation_split=0.2)
However I get this error:
NotImplementedError: in user code:
File “c:\Users\31613\anaconda3\envs\research\lib\site-packages\keras\engine\training.py”, line 1525, in test_function *
return step_function(self, iterator)
…
Call arguments received:
• inputs=tf.Tensor(shape=(32, 28, 28, 1), dtype=float32)
• training=False
• mask=None
Anyone knows how to fix it?