728x90
반응형
발생한 오류
강화학습을 학습하려고 할 때 다음과 같은 오류가 발생하였다.
AttributeError: 'numpy.random._generator.Generator' object has no attribute 'randint' in ".../ray/rllib/env/wrappers/atari_wrappers.py
문서에 따르면 randint 함수가 향후 제거될 예정이며, 대신 rng.integers(low, [high, size, dtype])를 사용한다고 한다.
해결 방법
venv\Lib\site-packages\gym\utils\seeding.py 에서 noops = self.unwrapped.np_random.randint(1, self.noop_max + 1) 부분을 찾아 아래와 같이 변경해주면 된다!
noops = self.unwrapped.np_random.integers(1, self.noop_max + 1)
Reference
https://github.com/ray-project/ray/issues/24133
728x90
반응형
LIST
'Error' 카테고리의 다른 글
[오류 해결] ufw: command not found error - ubuntu (0) | 2024.08.05 |
---|---|
[오류 해결] AttributeError: 'Mean' object has no attribute 'reset_states'. (0) | 2024.07.24 |
[오류 해결] curl: command not found - ubuntu (0) | 2024.06.03 |
[오류 해결] ERROR: no matching distribution found for torch==1.7.1+cu110 (0) | 2024.06.03 |
[오류 해결] module 'tensorflow._api.v2.io' has no attribute 'tf_record_iterator' (0) | 2024.06.03 |