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.
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.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.