Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

error: output with shape [1, 28, 28] doesn't match the broadcast shape [3, 28, 28] #4

Open
MonroeHe opened this issue Apr 5, 2023 · 0 comments

Comments

@MonroeHe
Copy link

MonroeHe commented Apr 5, 2023

I got the error: output with shape [1, 28, 28] doesn't match the broadcast shape [3, 28, 28]
because of this code:
for batch_idx, (x, _) in enumerate(train_loader)

we should change the transform code for mnist dataset:
ERROR
transform = transforms.Compose([
transforms.ToTensor(),
transforms.Normalize(mean=(0.5, 0.5, 0.5), std=(0.5, 0.5, 0.5))])

Right
transform = transforms.Compose([
transforms.ToTensor(),
transforms.Normalize([0.5], [0.5])
])

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant