TensorFlow 버전과 Keras 2 또는 3 버전 개요 실습 목적 Python 버전에 따라 설치할 수 있는 TensorFlow 버전이 어떻게 달라지는지 파악합니다. TensorFlow를 설치하면 Keras도 설치됩니다. 어느 버전의 TensorFlow부터 Keras 3가 설치되는지 파악합니다. Keras 2.15.0에서 발생하는 TextVectorization 객체 직렬화 문제가 Keras 3에서는 발생하지 않는지 파악합니다. 실습 환경 Windows 10 환경에서 실습하고 문서를 작성하였습니다. 가상 환경 도구로는 Python 기본 라이브러리에 포함되어 있는 venv 를 사용하였습니다. SW 버전 Python 3.9.3 3.12.4 pip 22.0.4 24.0 TensorFlow 2.15.1 2.16.2 Keras 2.15.0 3.4.1 Python 3.9.13 + TensorFlow Python 설치 파일 다운로드 위치 Python Releases for Windows Python 3.9.13 - May 17, 2022 Download Windows installer (64-bit) 설치된 Python과 pip 버전 확인 >python --version Python 3.9.13 >pip --version pip 22.0.4 from C:\Users\user1\AppData\Local\Programs\Python\Python39\lib\site-packages\pip (python 3.9) 설치 가능한 TensorFlow 버전 출력 >pip index versions tensorflow WARNING: pip index is currently an experimental command. It may be removed/changed in a future release without pri...