일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 백트래킹
- 시애틀
- BFS
- binary search
- 모두를 위한 딥러닝
- 알고리즘
- C/C++
- DP
- Spring Framework
- 프로그래머스
- 백준
- 다이나믹프로그래밍
- 스타벅스
- 라인플러스
- Java
- 딥러닝
- STL
- 스프링 프레임워크
- leetcode
- 릿코드
- C++
- 라인
- 머신러닝
- 프로그래밍언어론
- dfs
- 파이썬
- 벤쿠버
- Python
- spring
- jvm
- Today
- Total
케이스윔의 개발 블로그
[Lab05] Logistic classification 구현하기 본문
학습을 통해서 cost를 작게 하는 W를 구해보자! cost를 최소화하고자 하는 방법은 Linear regression과 마찬가지로 기울기를 변화시키면서 W를 조정하게 된다!
import tensorflow as tf
x_data = [[1, 2], [2, 3], [3, 1], [4, 3], [5, 3], [6, 2]]
y_data = [[0],[0],[0], [1], [1], [1]]
#x_data는 공부한시간, y_data는 0아니면 1로 주어진다!
#None으로 주는 이유는 데이터가 몇개 주어질지 몰라서 n개임을 표시한당
X = tf.placeholder(tf.float32, shape=[None,2])
Y = tf.placeholder(tf.float32, shape=[None,1])
#shape에 주의를 합시다!!!!! Multi-variable이니까!!!!
W = tf.Variable(tf.random_normal([2, 1]), name='weight')
b = tf.Variable(tf.random_normal([1]), name='bias')
#matmul -> matrix끼리 곱하기! shape를 맞춰야 한다.
hypothesis = tf.sigmoid(tf.matmul(X,W)+b)
cost = -tf.reduce_mean(Y*tf.log(hypothesis) + (1-Y)*tf.log(1-hypothesis))
#reduce_mean은 평균을 만들어주는 부분!
train = tf.train.GradientDescentOptimizer(learning_rate=0.01).minimize(cost)
#예측한 값이 hypothesis이고 그 값이 0.5을 기준으로 cast하면 true나 false가 나온다!
predicted = tf.cast(hypothesis > 0.5, dtype=tf.float32)
accuracy = tf.reduce_mean(tf.cast(tf.equal(predicted, Y), dtype=tf.float32))
with tf.Session() as sess:
sess.run(tf.global_variables_initializer())
for step in range(10001):
cost_val, _ = sess.run([cost, train], feed_dict={X: x_data, Y:y_data})
if step % 200 == 0:
print(step, cost_val)
h, c, a = sess.run([hypothesis, predicted, accuracy],feed_dict={X: x_data, Y:y_data})
#위에 학습한 모델에 x_data를 넣어서 예측값을 출력해본다!
print("\nhypothesis:\n", h, "\nCorrect(Y):\n", c, "\nAccuracy: ", a)
생각보다 코드가 너무 간단하다! 이론에서 봐도 알 수 있듯이 대부분 수식으로 나타낼 수 있고, 그런 경우 tensorflow의 계산을 통해서 쉽게 값을 계산하고 학습을 시킬 수 있다! 신기하다!
'모두를 위한 딥러닝' 카테고리의 다른 글
[Lab6-1&6-2] Softmax & Fancy softmax classification 구현 (0) | 2018.05.14 |
---|---|
[Lec6-1&6-2] Softmax Regression 개념과 cost function (0) | 2018.05.07 |
[Lec5-1&5-2] Logistic Classification의 가설 함수 정의와 cost 함수 설명 (0) | 2018.05.06 |
[Lab4-1&4-2] Multi-variable regression 및 Loading Data from file (0) | 2018.04.30 |
[Lec04] Multi-variable Linear regression 이란? (0) | 2018.04.29 |