softmax regression 썸네일형 리스트형 TensorFlow - Softmax Regression(2) @markdown# Fancy Softmax Classification ## Animal classification 모델 학습_____- 동물이 가지고 있는 특징(클래스) 데이터를 바탕으로 동물의 종을 예측하는 모델- x_data : 동물이 가지고 있는 특징(클래스) 데이터- y_data : 종 분류 값(실제값) 0~6까지 - cost를 구하는데 `softmax_cross_entropy_with_logits` 함수 사용- y_data를 `one-hot` 데이터로 변형해 사용### One-Hot encoding- 통계학에서 여러 개로 분류할 수 있는 데이터를 범주형 변수라고 한다. - N개의 숫자로 표현된 범주들을 머신러닝에 활용하기 위해 해당하는 칸의 정보를 1로 표시하고 나머지는 0으로 표시하는 방법을.. 더보기 TensorFlow - Softmax Regression(1) @markdown# Softmax Regression____- Logistic Regression은 Binary classification이었다면, Softmax Regression은 Multinomial classification이다.- Multinomial classification 역시 여러 개의 Binary classification으로 구성된 개념이다.- 각각의 독립적인 Binary classification으로 분류하는 것- Sigmoid 함수의 일반화된 형태로, 각 클래스에 대한 확률을 얻을 수 있다.## Softmax Function____![](https://user-images.githubusercontent.com/12658717/28018493-7e3e3638-65b8-11e7-93.. 더보기 이전 1 다음