Open bouthilx opened 2 years ago
Hi, I am sorry for the long delay. Are you still facing this issue? It should be possible to delete the experiment using the database object directly:
from orion.storage.legacy import setup_database
db = setup_database(dict(
type='pickleddb',
host='db.pkl'
)
)
experiment_name = 'some name...'
experiment_version = 1
db.remove('experiments', dict(name=experiment_name, version=experiment_version))
If the user has an experiment that has an invalid configuration, the command
orion db rm
will fail to load the experiments, making it impossible to delete it.We should support deleting them, possibly by avoiding to build the experiment and only rely on storage commands.