File tree 3 files changed +6
-3
lines changed
.github/unittest/linux_sota/scripts
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -29,5 +29,5 @@ dependencies:
29
29
- coverage
30
30
- vmas
31
31
- transformers
32
- - gym[atari]
33
- - gym[accept-rom-license]
32
+ - gym[atari,accept-rom-license,ale-py ]
33
+ - gymnasium[atari,ale-py]>=1.1.0
Original file line number Diff line number Diff line change @@ -111,7 +111,6 @@ python -c """import gym;import d4rl"""
111
111
112
112
# install ale-py: manylinux names are broken for CentOS so we need to manually download and
113
113
# rename them
114
- pip install " gymnasium[atari]>=1.1.0"
115
114
116
115
# ============================================================================================ #
117
116
# ================================ PyTorch & TorchRL ========================================= #
Original file line number Diff line number Diff line change 39
39
collector.frames_per_batch=20 \
40
40
collector.num_workers=1 \
41
41
logger.backend= \
42
+ env.env_name=ALE/Pong-v5 \
42
43
logger.test_interval=10
43
44
""" ,
44
45
"ppo_mujoco" : """python sota-implementations/ppo/ppo_mujoco.py \
56
57
loss.mini_batch_size=20 \
57
58
loss.ppo_epochs=2 \
58
59
logger.backend= \
60
+ env.env_name=ALE/Pong-v5 \
59
61
logger.test_interval=10
60
62
""" ,
61
63
"ddpg" : """python sota-implementations/ddpg/ddpg.py \
82
84
collector.frames_per_batch=20 \
83
85
loss.mini_batch_size=20 \
84
86
logger.backend= \
87
+ env.env_name=ALE/Pong-v5 \
85
88
logger.test_interval=40
86
89
""" ,
87
90
"dqn_atari" : """python sota-implementations/dqn/dqn_atari.py \
91
94
buffer.batch_size=10 \
92
95
loss.num_updates=1 \
93
96
logger.backend= \
97
+ env.env_name=ALE/Pong-v5 \
94
98
buffer.buffer_size=120
95
99
""" ,
96
100
"discrete_cql_online" : """python sota-implementations/cql/discrete_cql_online.py \
You can’t perform that action at this time.
0 commit comments