Martin Gauch
Results
2
comments of
Martin Gauch
I tried your suggestion like this: ```python ex = comet_ml.OfflineExperiment(offline_directory='/tmp') ex.log_other('asdf', 123) print(ex.get_key()) # prints key like 2f492... ex.end() ``` then `export COMET_EXPERIMENT_KEY=2f492...` then ```python ex = comet_ml.OfflineExperiment(offline_directory='/tmp') ex.log_other('qwer', 789)...
I added an offset via `ex.set_step()`, but it doesn't seem to help: - If I upload the first experiment before starting the second and then reupload with `--force-reupload`, the second...