experiments
experiments copied to clipboard
client.get_or_create_experiment(experiment_name, ...)
This might not be the best interface/name, but it would be nice to have a simple method for checking to see if an experiment already exists and adding to it if so, otherwise creating a new one. It looks like the only way to do this now is with a try/except or enumerating all experiments and checking the name from that somehow.
This might also just be a option of create_experiment
instead: create_experiment(..., return_existing=True)
.