일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- web 개발
- postorder
- 웹 용어
- 데이터전문기관
- Keras
- broscoding
- vscode
- discrete_scatter
- web 사진
- classification
- 대이터
- C언어
- 머신러닝
- bccard
- KNeighborsClassifier
- pycharm
- mglearn
- web
- paragraph
- tensorflow
- CES 2O21 참가
- CES 2O21 참여
- web 용어
- java역사
- 결합전문기관
- inorder
- cudnn
- 재귀함수
- html
- 자료구조
- Today
- Total
목록[AI]/python.tensorflow (15)
bro's coding
sess=tf.InteractiveSession() X=tf.constant([1,2],dtype=tf.float32) y=tf.constant([3,5],dtype=tf.float32) w=tf.Variable(tf.random.normal([])) b=tf.Variable(tf.random.normal([])) tf.global_variables_initializer().run() pred_y=X*w+b mse=tf.reduce_mean(tf.square(y-pred_y)) dw=2*tf.reduce_mean(X*(y-pred_y)) db=2*tf.reduce_mean(y-pred_y) learning_rate=.001 op1=tf.assign(w,w+learning_rate*dw) # variabl..
행렬곱 sess=tf.InteractiveSession() tf.matmul([[1,2]],[[3],[4]]).eval() array([[11]]) 전치행렬 a=tf.constant([[1],[2]]) tf.transpose(a).eval() array([[1, 2]])
# 설계 a=tf.constant(2) b=tf.Variable(3) c=a*b # 실행 with tf.Session() as sess: sess.run(b.initializer) n=sess.run(c) print(n) # with를 사용하면 꿀기능이 있다. with tf.Session() as sess: b.initializer.run() # operation (동작 지시) n=c.eval()# tensor (값) print(n) # with 안에서는 어떤 session을 이야기하는지 알 수 있어서 위와 같이 사용 할 수 있다. # with 밖에서 사용하려면 interactiveSession()을 사용 a=tf.constant(2) b=tf.Variable(3) c=a*b sess=tf.Interac..
import numpy as np import tensorflow as tf tensorflow에서의 data type - tf.constant() - tf.Variable() - tf.placeholder() tf.constant() # 상수 - 학습률 등 고정된 값 tf.Variable() # 변수 - 가중치(w)와 절편(b) tf.placeholder() # 플레이스 홀더 - X값 등 > constant a=tf.constant(2) b=tf.constant(3) display(a,b) c=a*b display(c) sess=tf.Session() display(sess.run(c)) sess.run([a,b,c]) sess.close() 6 [2, 3, 6] > Variable a=tf.const..