Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set experiment name when using CometML #723

Open
Mateusmsouza opened this issue Feb 8, 2024 · 1 comment
Open

Set experiment name when using CometML #723

Mateusmsouza opened this issue Feb 8, 2024 · 1 comment

Comments

@Mateusmsouza
Copy link

Currently it seems there is no way to set Experiment name on CometML.
Took a look on how the Comet Experiments are created and according to comet ml docs there is no parameter used to name a experiment on Experiment.init, it is necessary to use Experiment.set_name.

# comet_utils.py
self._experiment = comet_ml.Experiment(**self._comet_config)
self._logging = True
self._experiment.log_other("Created from", "tensorboardX")

I think this is a important feature as when working with multiple experiments it can be hard to know which one is which one and make a mess with the names is easy.

@Mateusmsouza
Copy link
Author

found a workaround:
writer._comet_logger._experiment.set_name(EXP_NAME)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant