Input features in the classifier #945
Replies: 2 comments
-
Please tell me in detail what you are really asking. Also mention video number and timestamp. |
Beta Was this translation helpful? Give feedback.
-
self.classifier = nn.Sequential(
nn.Flatten(),
nn.Linear(in_features=hidden_units*7*7,
out_features= output_shape)
) The job of the Additionally, if it doesn't match the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
self.classifier = nn.Sequential(
nn.Flatten(),
nn.Linear(in_features=hidden_units77,
out_features= output_shape)
)
I don't seem to understand how we got the 7*7 in the code above
Beta Was this translation helpful? Give feedback.
All reactions