* Tensorflow 2.12 문제
모델 생성, 컴파일 후 fit 할 때 해당 에러가 발생했다.
1. Tensorflow 버전 다운그레이드 하기
$ pip3 install tensorflow==2.11.0
→ 이렇게 하니까 ImportError: cannot import name 'range_op' from 'tensorflow.python.data.ops' 이런 에러 다시 발생
▶ 결론 : 에러 해결
2. Tensorflow-gpu 버전으로 다시 깔기
$ pip3 install tensorflow-gpu==2.11.0
'Setting, Error > Linux' 카테고리의 다른 글
cannot remove [file name]: Device or resource busy (0) | 2024.10.08 |
---|---|
Docker Container Stop 원인 해결 - GPG key Error (0) | 2024.03.05 |
ModuleNotFoundError: No module named 'weka' (0) | 2023.09.05 |
파일 전송 sftp 사용법 (0) | 2022.08.29 |
ERROR: Could not find a version that satisfies the requirement jupyter-lab (from versions: none)ERROR: No matching distribution found for [module] (0) | 2022.08.23 |