반응형
tensorflow 2.0 기본
문자열 출력
import tensorflow as tf
a = tf.constant('hello world')
a
a.numpy()
type(a)
type(a.numpy())
constant를 사용한 사칙연산
A = tf.constant(2)
B = tf.constatn(3)
C = A + B
C = tf.add(A,B)
C
C.numpy()
D = 5
E = C * D
E = tf.multiply(C,D)
E
E.numpy()
행렬곱 계산
Matrix_A = [[1,2],[3,4]]
Matrix_B = [[3,4],[4,5]]
Matrix_C = tf.matmul(Matrix_A, Matrix_B)
Matrix_C
반응형
'-------------코딩------------- > Tensorflow & pandas' 카테고리의 다른 글
데이터 중복 제거 duplicated() (0) | 2020.05.25 |
---|---|
NA(Not Available) 처리 메서드 (0) | 2020.05.25 |
pandas.read_csv 한글 깨짐 (0) | 2020.05.13 |
tensorflow 2.0 기초 분류 (가이드 기본 이미지 분류) (0) | 2020.01.17 |
tensorflow 2.0 mnist간단 모델(가이드 - 초보용) (0) | 2020.01.17 |
댓글