Autoencoders-Variants
Autoencoders-Variants copied to clipboard
Is have error: output with shape [1, 28, 28] doesn't match the broadcast shape [3, 28, 28]
Make train any variant.
In data_utils.py ~remove/comment~ change the Normalize() lines to:
transform = transforms.Compose([
transforms.ToTensor(),
transforms.Normalize((0.5), (0.5))
])
Turns out you should still normalize the data, just edited my answer above.