Linear Regression
-
[n211] Simple RegressionAI 부트캠프 2021. 10. 18. 15:10
Classification & Regression 지도 학습 (Supervised classification)은 크게 분류, 회귀로 나뉜다. 하지만 회귀는 다른 지도 학습과는 조금 다른 면이 있다. Property Supervised Classification Regression Output type 이산값 (category 값) 연속값 (숫자값) What are you trying to find Decision boundary "Best fit line" Evaluation Accuracy "Sum of Squared error" or R^2 기준 모델 (Baseline Model) 최소한의 성능을 나타내는 기준이 되는 모델로, 모델 성능을 판단할 때 기준이 되는 모델을 뜻한다. 예를 들어, 평균값을 ..