IT관련
tensorflow downgrade 하기 초간단! AttributeError: module 'tensorflow' has no attribute 'random_shuffle' 해결방법
Migos
2020. 3. 25. 12:59
반응형
텐서플로 버젼이 기본적으로 2.0으로 설치되기 때문에, 1.3.1 버젼으로 다운그레이드 해보겠다.
!pip install tensorflow-gpu==1.13.1
자동으로 2.0버젼이 지워지고 1.13.1버젼이 설치된다.
AttributeError: module 'tensorflow' has no attribute 'random_shuffle'
와 같은 에러가 뜨면 다운그레이드 해주면 해결이 된다.
끝.
반응형