-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
self.layers = nn.Sequential(
nn.Flatten(),
nn.Linear(28*28, 20),
nn.ReLU(),
nn.Linear(20, 10)
)
Why not load dataset already as batches?
-
we want the dataloader to handle sample to batch conversion
- this way, the batchSize can be dynamically changed
-
test if test dataset is corrupted
How to initialize weights?
- xavier initialization
Bug in loss vs validationLoss
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels