File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -512,7 +512,7 @@ def train_model_accuracy(
512
512
f"Valid Loss: { avg_valid_loss * 1e4 :.4f} , LR: { lr :.6f} "
513
513
)
514
514
515
- tmp_train_losses = np .array (train_losses )
515
+ tmp_train_losses = np .array (train_losses ) * 1e4
516
516
tmp_valid_losses = np .array (valid_losses ) * 1e4
517
517
plot_train_valid_losses (tmp_train_losses , tmp_valid_losses , file_name = "accuracy_model.png" )
518
518
Original file line number Diff line number Diff line change 3
3
"num_workers" : 4 ,
4
4
"dataset_path" : " datasets/third_dataset" ,
5
5
"device" : " cuda" ,
6
- "developer_mode" : true ,
6
+ "developer_mode" : false ,
7
7
8
- "n_models" : 300 ,
8
+ "n_models" : 1300 ,
9
9
10
10
"upper_margin" : 0.75 ,
11
11
"lower_margin" : 0.25 ,
17
17
18
18
"acc_num_epochs" : 10 ,
19
19
"acc_lr_start" : 1e-2 ,
20
- "acc_lr_end" : 5e-4 ,
20
+ "acc_lr_end" : 1e-3 ,
21
21
"acc_dropout" : 0.2 ,
22
22
"acc_n_heads" : 16 ,
23
23
24
- "div_num_epochs" : 5 ,
24
+ "div_num_epochs" : 10 ,
25
25
"div_lr_start" : 1e-3 ,
26
- "div_lr_end" : 1e-6 ,
26
+ "div_lr_end" : 1e-4 ,
27
27
"div_dropout" : 0.1 ,
28
28
"div_n_heads" : 4 ,
29
29
"margin" : 1 ,
You can’t perform that action at this time.
0 commit comments