diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-30 23:15:03 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-30 23:15:03 +0200 |
commit | 7268035fb9e57342612a8cc50a1fe04e8841ca2f (patch) | |
tree | 8d4cf3743975bd25f2c04d6a56ff3d4608a7e8d9 /training/conf/logger | |
parent | 92fc1c7ed2f9f64552be8f71d9b8ab0d5a0a88d4 (diff) |
attr bug fix, properly loading network
Diffstat (limited to 'training/conf/logger')
-rw-r--r-- | training/conf/logger/wandb.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/training/conf/logger/wandb.yaml b/training/conf/logger/wandb.yaml index 552cf00..37bd2fe 100644 --- a/training/conf/logger/wandb.yaml +++ b/training/conf/logger/wandb.yaml @@ -2,14 +2,14 @@ wandb: _target_: pytorch_lightning.loggers.wandb.WandbLogger - project: "text-recognizer" + project: text-recognizer name: null save_dir: "." - offline: False # set True to store all logs only locally + 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 - log_model: False + log_model: false prefix: "" - job_type: "train" + job_type: train group: "" tags: [] |