-
ML lec 06-1 Softmax Regression: 기본 개념 소개인공지능 및 기계학습 개론/ML_LEC 2020. 2. 11. 10:46
여러개의 그룹이 있을때 어느 그룹에 속할지 분류하는 Multinomial classification
그중 가장 많이 사용되는 softmax regression
Logistic regression : binary classification
- Linear hypothesis(H(X)=WX)에서 출발했지만 return값이 0~1 범위를 벗어남
- sigmoid(logistic) function g(z)로 압축
Multinomial classification
- x1, x2, y -> group A, B, C
- Linear(Binary) Classifier for A or not, B or not, C or not
- A classifier Matrix : WX=H(X)
- B classifier Matrix : WX=H(X)
- C classifier Matrix : WX=H(X)
- 하나로 합쳐보자 -> W_ABC * X = H_ABC(X)
'인공지능 및 기계학습 개론 > ML_LEC' 카테고리의 다른 글
ML lab 01 - TensorFlow의 설치및 기본적인 operations (new) (0) 2020.02.12 ML lec 07-1: 학습 rate, Overfitting, 그리고 일반화 (Regularization) (0) 2020.02.11 ML lec 06-2 Softmax classifier 의 cost함수 (0) 2020.02.11 ML lec 03 - Linear Regression의 cost 최소화 알고리즘의 원리 설명 (0) 2020.02.10 ML lec 02 - Linear Regression (0) 2020.02.10