You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now we have multiple ways to run an experiment with sheeprl, namely:
lightning run model sheeprl.py COMMAND ...
python sheeprl.py COMMAND ...
It would be nice to have a single entrypoint so to launch every experiment with python sheeprl.py exp=..., where the exp= specifies the experiment config (predefined configs can be found under the sheeprl/configs/exp/ directory). This let us decorate only the entrypoint with the @hydra.main() decorator.
The only requirement is that algo.name=algorithm_name, where algorithm_namecomes from algorithm_name.py, where algorithm_name.py is the file containing the algorithm implementation (it must contain at least one method decorated with the register_algorithm decorator)
The text was updated successfully, but these errors were encountered:
Right now we have multiple ways to run an experiment with sheeprl, namely:
lightning run model sheeprl.py COMMAND ...
python sheeprl.py COMMAND ...
It would be nice to have a single entrypoint so to launch every experiment with
python sheeprl.py exp=...
, where theexp=
specifies the experiment config (predefined configs can be found under thesheeprl/configs/exp/
directory). This let us decorate only the entrypoint with the@hydra.main()
decorator.The only requirement is that
algo.name=algorithm_name
, wherealgorithm_name
comes from algorithm_name.py, wherealgorithm_name.py
is the file containing the algorithm implementation (it must contain at least one method decorated with the register_algorithm decorator)The text was updated successfully, but these errors were encountered: