Add the ability pass a run name (in case of a new run) or a run hash (in case of an existing run) to the pytorch lightning logger.
Motivation
Currently, using the AimLogger adapter for pytorch lightning makes it impossible to pass in a name for a run, resulting in a lot of runs names like Run_<hash> which make it hard to follow/track basic differences. At the same time, resuming a run, requires passing in a run_hash immediately after instantiation (and before self.experiment is accessed).
Pitch
I would like to pass in run name and hash to the pytorch lightning aim logger, adding support for custom names and resuming training runs.
🚀 Feature
Add the ability pass a run name (in case of a new run) or a run hash (in case of an existing run) to the pytorch lightning logger.
Motivation
Currently, using the AimLogger adapter for pytorch lightning makes it impossible to pass in a name for a run, resulting in a lot of runs names like
Run_<hash>
which make it hard to follow/track basic differences. At the same time, resuming a run, requires passing in arun_hash
immediately after instantiation (and beforeself.experiment
is accessed).Pitch
I would like to pass in run
name
andhash
to the pytorch lightning aim logger, adding support for custom names and resuming training runs.Alternatives
and