tensorflow-mnist-VAE icon indicating copy to clipboard operation
tensorflow-mnist-VAE copied to clipboard

Tensorflow implementation of variational auto-encoder for MNIST

Results 6 tensorflow-mnist-VAE issues
Sort by recently updated
recently updated
newest added

Hi, While training on multiple images of MNIST I was not getting any reasonable output upon **generation** of images, however when I trained on a single digit (say 3) I...

Sometimes when I try this code, I get a Nan loss. For example the loss for epoch "i" is 100 and the loss for epoch "i+1" is Nan... Do you...

I want to use this code to run on USPS dataset,how can i change the dataset , i always meet a typeerror. wait for your answer and thank you!

Hi, In run_main, in the section "if ADD_NOISE:", the code states: if ADD_NOISE: x_PMLR = x_PMLR * np.random.randint(2, size=x_PMLR.shape) x_PMLR += np.random.randint(2, size=x_PMLR.shape) Line 1 creates pepper noise (since you...