Skip to content

Commit 990f8c5

Browse files
committed
Fix a typo: envpool/train-ppo
1 parent 3c31b5a commit 990f8c5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/envpool/train_ppo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def train():
3232

3333
# create environment, set environment parallelism to 9
3434
env = make(
35-
"envpool:Adventure-v5",
35+
"envpool:CartPole-v1",
3636
render_mode=None,
3737
env_num=9,
3838
asynchronous=False,
@@ -45,7 +45,7 @@ def train():
4545
cfg=cfg,
4646
)
4747
# initialize the trainer
48-
agent = Agent(net, use_wandb=False, project_name="envpool:Adventure-v5")
48+
agent = Agent(net, use_wandb=False, project_name="envpool:CartPole-v1")
4949
# start training, set total number of training steps to 20000
5050
agent.train(total_time_steps=20000)
5151

0 commit comments

Comments
 (0)