-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split up logger config, link num_labels argument to macro-f1
- Loading branch information
sfluegel
committed
Dec 22, 2023
1 parent
15c0a8a
commit 6ffa25b
Showing
7 changed files
with
26 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
class_path: lightning.pytorch.loggers.CSVLogger | ||
init_args: | ||
save_dir: logs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,5 @@ | ||
min_epochs: 100 | ||
max_epochs: 100 | ||
default_root_dir: &default_root_dir logs | ||
strategy: 'ddp_find_unused_parameters_true' | ||
logger: | ||
# class_path: lightning.pytorch.loggers.CSVLogger | ||
# init_args: | ||
# save_dir: *default_root_dir | ||
class_path: chebai.loggers.custom.CustomLogger # Extension of Wandb logger | ||
init_args: | ||
save_dir: *default_root_dir | ||
project: 'chebai' | ||
entity: 'chebai' | ||
log_model: 'all' | ||
logger: csv_logger.yml | ||
callbacks: default_callbacks.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
class_path: chebai.loggers.custom.CustomLogger # Extension of Wandb logger | ||
init_args: | ||
save_dir: logs | ||
project: 'chebai' | ||
entity: 'chebai' | ||
log_model: 'all' |