Closed RosabanksiaeAit closed 2 years ago
self.fc2 = nn.Linear(120, 64) #84
self.relu4 = nn.ReLU()
self.fc3 = nn.Linear(64, 10) #84
model里面两个84改成64
self.fc2 = nn.Linear(120, 64) #84 self.relu4 = nn.ReLU() self.fc3 = nn.Linear(64, 10) #84
model里面两个84改成64
Maybe it's a good idea to avoid over-fitting.
The initial weight of network is crucial to the final perfomance.
You can run multiple models to see which is best. I think the best performance would be bigger than 0.61. What's more, 100 epoch may be too much for this task. The model may be over-fitting the training data.