facebookresearch / dora

Dora is an experiment management framework. It expresses grid searches as pure python files as part of your repo. It identifies experiments with a unique hash signature. Scale up to hundreds of experiments without losing your sanity.
MIT License
262 stars 24 forks source link

No stop command? #62

Open stg1205 opened 6 months ago

stg1205 commented 6 months ago

❓ Questions

Sometimes there's something wrong with the experiment and need to expire it. I did it by kill all the processes created by dora, is this the correct way?

adefossez commented 6 months ago

Just use the -C flag with the Dora grid command if that is what you have been using. In case you fixed a serious bug in your code you can also use --clear to wipeout the checkpoints and restart from scratch.

stg1205 commented 6 months ago

I run with 'dora run' command locally but no -C flag for run command?