RSDP_DNN_Multinomial Regression / Classification

지토·2022년 6월 26일
0

다변수 다루기

multi-class classification : 출력값이 여러 개 일 때

Multiple Linear Regression

  • Linear regression with several variables
  • In most cases, problems are multiple linear regression type

Issue : How we apply gradient descent for multiple parameters ?

  • It does not depend on the number of parameters
  • Easier, performed separately for each parameter
  • More details will be covered in back propagation later

파라미터가 여러 개여도 편미분을 하면 그 축에 대한 기울기를 알 수 있다.

변수가 많아지더라도 각각을 미분한 후 합치면 된다는 것이 Multinomial Regression 의 핵심 아이디어이다.

Hypothesis 를 다항식으로 표현하지 않고 data 와 weight 의 곱으로 표현한다.

Use binary classification for each class

Cross Entropy

binary cross entropy is a special type of cross entropy

0개의 댓글