- TF-Agents 모듈 임포트하기
- TF-Agents 환경 준비하기
- TF-Agents 환경 살펴보기
- TF-Agents 행동 반영하기
- TF-Agents 환경 Wrapper 사용하기
- TF-Agents 에이전트 구성하기
- TF-Agents 정책 다루기
- TF-Agents 정책 평가하기
- TF-Agents 데이터 수집하기
- TF-Agents 에이전트 훈련하기
- Python Tutorial
- NumPy Tutorial
- Matplotlib Tutorial
- PyQt5 Tutorial
- BeautifulSoup Tutorial
- xlrd/xlwt Tutorial
- Pillow Tutorial
- Googletrans Tutorial
- PyWin32 Tutorial
- PyAutoGUI Tutorial
- Pyperclip Tutorial
- TensorFlow Tutorial
- Tips and Examples
TF-Agents 모듈 임포트하기¶
TF-Agents는 TensorFlow의 강화학습 라이브러리입니다.
이 페이지에서는 TF-Agents 라이브러리를 임포트 (Import)하고, 버전을 확인하는 방법에 대해 소개합니다.
■ Table of Contents
2) 버전 확인하기¶
예제2¶
import tf_agents
print(tf_agents.version.__version__)
print(tf_agents.version._MAJOR_VERSION)
print(tf_agents.version._MINOR_VERSION)
print(tf_agents.version._PATCH_VERSION)
0.6.0
0
6
0
TF-Agents 라이브러리의 버전은 MAJOR, MINOR, PATCH 버전으로 이루어져 있습니다.
위의 예제와 같이 상수 tf_agents.version._MAJOR_VERSION, tf_agents.version._MINOR_VERSION, tf_agents.version._PATCH_VERSION를 사용해서 각각의 버전을 얻을 수 있습니다.
이전글/다음글
다음글 : TF-Agents 환경 준비하기