Skip to content

Commit

Permalink
Re-place placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbieker committed Feb 5, 2024
1 parent c361a5d commit 6089ec2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion configs.example/callbacks/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ model_checkpoint:
every_n_epochs: 1
verbose: False
filename: "epoch={epoch}-step={step}"
dirpath: "checkpoints/windnet2.1/${model_name}" #${..model_name}
# The path to where the model checkpoints will be stored
dirpath: "PLACEHOLDER/${model_name}" #${..model_name}
auto_insert_metric_name: False
save_on_train_epoch_end: False
3 changes: 2 additions & 1 deletion configs.example/logger/tensorboard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

tensorboard:
_target_: pytorch_lightning.loggers.tensorboard.TensorBoardLogger
save_dir: "/mnt/storage_ssd_4tb/windnet_batches/tensorboard"
# Path to use for tensorboard logs
save_dir: "PLACEHOLDER"
name: "default"
version: "${model_name}"
log_graph: False
Expand Down
6 changes: 4 additions & 2 deletions configs.example/logger/wandb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

wandb:
_target_: lightning.pytorch.loggers.wandb.WandbLogger
project: "windnet2.1"
# wandb project to log to
project: "PLACEHOLDER"
name: "${model_name}"
save_dir: "/mnt/storage_ssd_4tb/windnet_batches/"
# location to store the wandb local logs
save_dir: "PLACEHOLDER"
offline: False # set True to store all logs only locally
id: null # pass correct id to resume experiment!
# entity: "" # set to name of your wandb team or just remove it
Expand Down

0 comments on commit 6089ec2

Please sign in to comment.