File tree 2 files changed +4
-2
lines changed
mlagents/trainers/tests/torch_entities
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ def test_hybrid_sac(action_size):
90
90
buffer_init_steps = 0 ,
91
91
)
92
92
config = attr .evolve (
93
- SAC_TORCH_CONFIG , hyperparameters = new_hyperparams , max_steps = 8000
93
+ SAC_TORCH_CONFIG , hyperparameters = new_hyperparams , max_steps = 10000
94
94
)
95
95
check_environment_trains (env , {BRAIN_NAME : config }, success_threshold = 0.9 )
96
96
Original file line number Diff line number Diff line change @@ -70,7 +70,9 @@ def run(self):
70
70
# https://github.com/pytorch/pytorch/issues/50014
71
71
"torch>=1.8.0,<=1.11.0;(platform_system!='Windows' and python_version>='3.9')" ,
72
72
"torch>=1.6.0,<1.9.0;(platform_system!='Windows' and python_version<'3.9')" ,
73
- "tensorboard>=1.15" ,
73
+ "tensorboard>=2.14" ,
74
+ # adding six explicit dependency since tensorboard needs it but doesn't declare it as a dep
75
+ "six>=1.16" ,
74
76
# cattrs 1.1.0 dropped support for python 3.6, but 1.0.0 doesn't work for python 3.9
75
77
# Since there's no version that supports both, we have to draw the line somwehere.
76
78
"cattrs<1.1.0; python_version<'3.8'" ,
You can’t perform that action at this time.
0 commit comments