This repository was archived by the owner on May 9, 2025. It is now read-only.
This repository was archived by the owner on May 9, 2025. It is now read-only.
Open
Description
Describe the bug
In the scripts rl_baselines/rl_algorithm/sac.py, deepq.py, ddpg.py:
def customArguments(self, parser):
## forget to add: super().customArguments(parser)
Code example
The following command line reproduces the issue:
- python -m rl_baselines.train --algo sac -c --policy lstm --num-timesteps 10000 --env MobileRobotGymEnv-v0
- python -m rl_baselines.train --algo deepq -c --policy lstm --num-timesteps 10000 --env MobileRobotGymEnv-v0
- python -m rl_baselines.train --algo ddpg -c --policy lstm --num-timesteps 10000 --env MobileRobotGymEnv-v0