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

Python Debugger and dora #64

Closed javanasse closed 3 months ago

javanasse commented 3 months ago

❓ Questions

Currently using the dora CLI to initiate training.

dora run -d solver=<some/solver> dset=<path/to/data> ...

What is the syntax for running the same command but using the dora python package?

adefossez commented 3 months ago

you mean python -m dora run -d [...] ? sadly the debugger is likely to fail in distributed mode, because it would get started on all workers on individual GPUs...