File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
.github/unittest/linux_sota/scripts
sota-implementations/dreamer Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 190
190
logger.backend=
191
191
""" ,
192
192
"dreamer" : """python sota-implementations/dreamer/dreamer.py \
193
- collector.total_frames=200 \
193
+ collector.total_frames=600 \
194
194
collector.init_random_frames=10 \
195
195
collector.frames_per_batch=200 \
196
196
env.n_parallel_envs=1 \
197
197
optimization.optim_steps_per_batch=1 \
198
- logger.video=True \
198
+ logger.video=False \
199
199
logger.backend=csv \
200
200
replay_buffer.buffer_size=120 \
201
201
replay_buffer.batch_size=24 \
Original file line number Diff line number Diff line change @@ -321,8 +321,10 @@ def compile_rssms(module):
321
321
322
322
t_collect_init = time .time ()
323
323
324
- test_env .close ()
325
- train_env .close ()
324
+ if not test_env .is_closed :
325
+ test_env .close ()
326
+ if not train_env .is_closed :
327
+ train_env .close ()
326
328
collector .shutdown ()
327
329
328
330
del test_env
You can’t perform that action at this time.
0 commit comments