Skip to content

Commit fe258c4

Browse files
authored
Fix --confile_file flag in command examples
The training command examples contain the --config_path flag. This will throw an error. In the source code --config_file or -c is used.
1 parent 66705b0 commit fe258c4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/EXAMPLE_ENVIRONMENTS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ For the current version, we provide 4 example environments, located in **envs/ex
3232
### Example training:
3333
The agent can be trained with the following command:
3434
```
35-
gdrl --env_path envs/builds/JumperHard/jumper_hard.x86_64 --config_path envs/configs/ppo_config_jumper_hard.yaml
35+
gdrl --env_path envs/builds/JumperHard/jumper_hard.x86_64 --config_file envs/configs/ppo_config_jumper_hard.yaml
3636
```
3737
Training logs will be output by default to **/home/USER/ray_results/PPO/jumper_hard/**
3838
You can monitor training curves etc with tensorboard
@@ -71,7 +71,7 @@ gdrl --env_path envs/builds/JumperHard/jumper_hard.x86_64 --eval --restore envs/
7171
### Example training:
7272
The agent can be trained with the following command:
7373
```
74-
gdrl --env_path envs/builds/BallChase/ball_chase.x86_64 --config_path envs/configs/ppo_config_ball_chase.yaml
74+
gdrl --env_path envs/builds/BallChase/ball_chase.x86_64 --config_file envs/configs/ppo_config_ball_chase.yaml
7575
```
7676
Training logs will be output by default to **/home/USER/ray_results/PPO/ball_chase/**
7777
You can monitor training curves etc with tensorboard
@@ -108,7 +108,7 @@ gdrl --env_path envs/builds/BallChase/ball_chase.x86_64 --eval --restore envs/ch
108108
### Example training:
109109
The agent can be trained with the following command:
110110
```
111-
gdrl --env_path envs/builds/FlyBy/fly_by.x86_64 --config_path envs/configs/ppo_config_fly_by.yaml
111+
gdrl --env_path envs/builds/FlyBy/fly_by.x86_64 --config_file envs/configs/ppo_config_fly_by.yaml
112112
```
113113
Training logs will be output by default to **/home/USER/ray_results/PPO/fly_by/**
114114
You can monitor training curves etc with tensorboard
@@ -149,7 +149,7 @@ gdrl --env_path envs/builds/FlyBy/fly_by.x86_64 --eval --restore envs/checkpoint
149149
### Example training:
150150
The agent can be trained with the following command:
151151
```
152-
gdrl --env_path envs/builds/SpaceShooter/space_shooter.x86_64 --config_path envs/configs/ppo_config_space_shooter.yaml
152+
gdrl --env_path envs/builds/SpaceShooter/space_shooter.x86_64 --config_file envs/configs/ppo_config_space_shooter.yaml
153153
```
154154
Training logs will be output by default to **/home/USER/ray_results/PPO/space_shooter/**
155155
You can monitor training curves etc with tensorboard

0 commit comments

Comments
 (0)