fix(PPOTrainer.py, PPOArgs.py): added hyperparam config path to cli args, fixed missing arguments error in _step call
This commit is contained in:
parent
ab7fa1584f
commit
8a2f8b14bc
3 changed files with 16 additions and 5 deletions
|
|
@ -13,6 +13,9 @@ class PPOArgs:
|
|||
# path to environment config file, if None, use default config
|
||||
env_config_path: str | None = None
|
||||
|
||||
# path to hyperparameter config file (yaml), if None, use default config
|
||||
hyperparameter_config_path: str | None = None
|
||||
|
||||
# the name of this experiment
|
||||
exp_name: str = "brittle_star_ppo"
|
||||
|
||||
|
|
|
|||
Reference in a new issue