You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "~/envs/lib/python3.9/site-packages/ding/envs/env/env_implementation_check.py", line 36, in check_array_space
assert (space.low <= ndarray).all() and (ndarray <= space.high).all(
AttributeError: 'MultiDiscrete' object has no attribute 'low'
在编写自定义环境时,参考
ding/envs/env/tests/test_env_implementation_check.py
文件对环境进行测试,报错:动作空间是离散连续混合动作,定义如下:
MultiDiscrete对象默认的下限值low是0,但是它没有low这个属性。
有什么解决思路嘛?
The text was updated successfully, but these errors were encountered: