How to not create lightning_logs when using a external logger like wandb ? #6685
Answered
by
awaelchli
richarddwang
asked this question in
Lightning Trainer API: Trainer, LightningModule, LightningDataModule
-
I would like my wandb logger to just place their data under |
Beta Was this translation helpful? Give feedback.
Answered by
awaelchli
Apr 5, 2021
Replies: 1 comment 1 reply
-
You can set the logger = WandbLogger(save_dir="wandb", ...)
Trainer(logger=logger, ...) This should work (haven't tested it). |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
richarddwang
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can set the
save_dir
in WandbLogger, something likeThis should work (haven't tested it).
Then your logs and checkpoints will save to two different locations.