File tree Expand file tree Collapse file tree 3 files changed +22
-3
lines changed
Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -160,4 +160,4 @@ cython_debug/
160160# option (not recommended) you can uncomment the following to ignore the entire idea folder.
161161# .idea/
162162
163- configs /
163+ # configs/ # commented as new configs can be added as a part of a feature
Original file line number Diff line number Diff line change 1- min_epochs : 100
1+ # min_epochs: 100
22max_epochs : 100
33default_root_dir : &default_root_dir logs
4- logger : wandb_logger .yml
4+ logger : csv_logger .yml
55callbacks : default_callbacks.yml
Original file line number Diff line number Diff line change 1+ - class_path : chebai.callbacks.model_checkpoint.CustomModelCheckpoint
2+ init_args :
3+ monitor : val_micro-f1
4+ mode : ' max'
5+ filename : ' best_{epoch:02d}_{val_loss:.4f}_{val_macro-f1:.4f}_{val_micro-f1:.4f}'
6+ every_n_epochs : 1
7+ save_top_k : 5
8+ - class_path : chebai.callbacks.model_checkpoint.CustomModelCheckpoint
9+ init_args :
10+ filename : ' per_{epoch:02d}_{val_loss:.4f}_{val_macro-f1:.4f}_{val_micro-f1:.4f}'
11+ every_n_epochs : 5
12+ save_top_k : -1
13+ - class_path : lightning.pytorch.callbacks.early_stopping.EarlyStopping
14+ init_args :
15+ monitor : " val_loss_epoch"
16+ min_delta : 0.0
17+ patience : 3
18+ verbose : False
19+ mode : " min"
You can’t perform that action at this time.
0 commit comments