I am trying to follow 6.1 model, but "784" and "28 * 28" works totally different. #1132
Unanswered
Feiyang-umich
asked this question in
Q&A
Replies: 1 comment
-
There is no difference, its basically same. As its just simpler way of readability for |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
model_01 = FashionMNISTv1(784,10,len(class_names)).to(device)
works the same as the tutorialwhile
model_01 = FashionMNISTv1(28*28,10,len(class_names)).to(device)
only gives ~10% percent accuracy with loss ~ 2.3.Any difference between these styles?
Beta Was this translation helpful? Give feedback.
All reactions