06-1. Tensor Flow 로 3종류 이상 Classfication (Soft max Classifier)
06-1. Softmax Classification 출처 : 모두를위한 머신러닝 (http://hunkim.github.io/ml/) 이론 Multinomial Classification¶3종류 이상의 classification Softmax function¶ In [2]: import tensorflow as tf x_data = [[1, 2, 1, 1], [2, 1, 3, 2], [3, 1, 3, 4], [4, 1, 5, 5], [1, 7, 5, 5], [1, 2, 5, 6], [1, 6, 6, 6], [1, 7, 7, 7]] # one hot incoding.. 한가지만 1 나머진0 # C C C B B B A A y_data = [[0, 0, 1], [0, 0, 1], [0, 0, 1], [0, ..
2018. 8. 20.