Definition of ML
- Inductive bias : 인공지능에서 말하는 "Learning"이란 데이터를 분석하여 예측 performance를 개선하기 위하여 경험을 전문지식으로 전화하는 과정임.
- Formulation: training data- 경험, ouput- specific task에 특화된 어떤 전문가이라고 할 수 있음.
ML의 다양한 type
- Prediction
- input: ${(x_1, y_1), ..., (x_n, y_n)}$
- ouput: $f$ :$X$→ $Y$ 를 잘 이해할 수 있도록 하는 함수 $f$
- Dataset이 주어졌을 때 best function을 찾는 과정. 예시로 Prediction과 Classificaiton이 있음.
- Supervised Learning
- Active Learning
- Semi-Supervised Learning
- Understanding
- Policy
300x250
'Machine Learning' 카테고리의 다른 글
데이터분석 코딩테스트 준비 사항 (feat 데이터 전처리부터 모델링까지) (1) | 2024.05.04 |
---|---|
[Python/ EDA] categorical data를 다루는 방법 : onehot encoding/ label encoding (0) | 2022.04.17 |