- Spame Detection : Spam or Ham
- Facebook feed : show or hide
- 위와 같은 그래프로 linear algorithm 을 정의하면 문제가 있음. 예를 들어 50시간 공부한 사람은 Pass 겠지만, 그래프에서는 fail로 표시됨.
cost = -tf.reduce_mean(Y * tf.log(hypothesis) + (1-Y)*tf.log(1-hypothesis))
a = tf.Variable(0.1)
optimizer = tf.train.GradientDescentOptimizer(a)
train = optimizer.minimize(cost)