fchollet / deep-learning-with-python-notebooks

Jupyter notebooks for the code samples of the book "Deep Learning with Python"
MIT License
17.97k stars 8.48k forks source link

Variational Autoencoders (Listing 8.27) #165

Open cwk20 opened 3 years ago

cwk20 commented 3 years ago

The code below is causing an error. There seems to be a problem with batch_size.

vae.fit(x=x_train, y=None, shuffle=True, epochs=10, batch_size=batch_size, validation_data=(x_test, None))

Marwa-AL commented 1 year ago

Hi, did you manage to resolve this issue? I am having the same error.