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 190190 logger.backend=
191191""" ,
192192 "dreamer" : """python sota-implementations/dreamer/dreamer.py \
193- collector.total_frames=200 \
193+ collector.total_frames=600 \
194194 collector.init_random_frames=10 \
195195 collector.frames_per_batch=200 \
196196 env.n_parallel_envs=1 \
197197 optimization.optim_steps_per_batch=1 \
198- logger.video=True \
198+ logger.video=False \
199199 logger.backend=csv \
200200 replay_buffer.buffer_size=120 \
201201 replay_buffer.batch_size=24 \
Original file line number Diff line number Diff line change @@ -321,8 +321,10 @@ def compile_rssms(module):
321321
322322 t_collect_init = time .time ()
323323
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 ()
326328 collector .shutdown ()
327329
328330 del test_env
You can’t perform that action at this time.
0 commit comments