[TensorFlow] 기본 연산 Start
BioinformaticsAndMe
[TensorFlow] 기본 연산
: TensorFlow 2.0 에서 사용되는 기본 수식 연산의 간단한 예제
# 텐서플로우 라이브러리 임포트
from __future__ import print_function # python2에서 python3 몇몇 문법을 사용 가능하게 함 (print 함수)
import tensorflow as tf
#Reference
1) https://github.com/aymericdamien/TensorFlow-Examples/tree/master/tensorflow_v2
2) https://medium.com/@manish54.thapliyal/machine-learning-basics-scalars-vectors-matrices-and-tensors-e120ecd0e6f7
[TensorFlow] 기본 연산 End
BioinformaticsAndMe
'Machine Learning' 카테고리의 다른 글
[TensorFlow] Logistic Regression (0) | 2019.10.09 |
---|---|
[TensorFlow] Linear Regression (0) | 2019.10.05 |
[TensorFlow] 문자열 출력 (0) | 2019.10.03 |
경사하강법 종류 (0) | 2019.09.26 |
학습률 (Learning rate) (0) | 2019.09.24 |