fchollet/deep-learning-with-python-notebooks

Variational Autoencoders (Listing 8.27)

cwk20 opened this issue · 1 comments

cwk20 commented

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))

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