yongyong-e
[TensorFlow] Basic 본문
1) Tensorflow 설치
Tensorflow 설치는 다음을 참고해주길 바란다.
2017/07/27 - [머신러닝/Tensorflow - Models] - Install tensorflow-gpu
2) Session
기본적으로 tensorflow 문법은 다음과 같이 작성된다.
이와 같이 문자열이나 상수들은 Tensor라는 배열에 담기며, Session을 통해 tensorflow를 구동시키고 run함수를 사용하여 호출시킬 수 있다.
Session이 끝나면 sess.close()를 통해 닫아주는 것이 좋다. 또한 Seesion함수는 with구문을 사용하여 세션구동 및 닫기가 가능하다.
3) Placeholder
Placeholder는 다양한 데이터를 입력 받아 처리 할 수 있도록 하는 함수로 다음과 같이 사용 할 수 있다.
'머신러닝 > TensorFlow' 카테고리의 다른 글
[TensorFlow] 로그 필터링 (0) | 2018.06.30 |
---|---|
[TensorFlow] Tensor (0) | 2018.06.22 |
[TensorFlow] Tested source configurations (0) | 2017.11.23 |
[TensorFlow] Linear Regression (0) | 2017.09.11 |
[TensorFlow] How to install tensorflow-gpu on ubuntu16.04 (0) | 2017.07.27 |
Comments