How to set experiment name such that it can be some unique name instead of version_0, ... etc. #9185
-
I'm currently running a lot of experiments and in order to track all of them in tensorboard I have to rename each experiment folder by hand (e.g. lightning_logs/version_0 -> lightning_logs/{unique_informative_exp_name}). The question is follows : |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can pass Trainer a custom logger with the version specified. from pytorch_lightning.loggers import TensorBoardLogger
logger = TensorBoardLogger("default_root_dir", version="your_version", name="my_model")
trainer = Trainer(logger=logger) Here is the api of TensorBoardLogger |
Beta Was this translation helpful? Give feedback.
You can pass Trainer a custom logger with the version specified.
Here is the api of TensorBoardLogger