Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
Aquila-f committed Aug 3, 2021
1 parent ffb49b1 commit b6d7b9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lab3/01.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,10 @@ def forward(self, x):

config = {
'Batch_size' : 4,
'Epochs' : 10,
'Epochs' : 50,
'Optimizer' : 'SGD',
'Optim_hparas':{
'lr' : 0.001,
'lr' : 0.0008,
'momentum' : 0.9,
'weight_decay' : 5e-4
},
Expand All @@ -141,7 +141,7 @@ def forward(self, x):
df_loss = pd.DataFrame()


for switch in [True,False]:
for switch in [True]:

train_accuracy_list = []
train_loss_list = []
Expand Down

0 comments on commit b6d7b9d

Please sign in to comment.