본문 바로가기

코딩/Machine Learning

Machine Learning Basics

1. Machine Learning

• Limitations of explicit programming

- Spam filter: many rules

- Automatic driving: too many rules

• Machine learning: "Field of study that gives computers the ability to learn without being explicitly programmed” Arthur Samuel (1959)

2. Supervised/Unsupervised learning

• Supervised learning:

- learning with labeled examples - training set

• Unsupervised learning: un-labeled data

- Google news grouping

- Word clustering

3. Supervised learning

• Most common problem type in ML

- Image labeling: learning from tagged images

- Email spam filter: learning from labeled (spam or ham) email

- Predicting exam score: learning from previous exam score and time spent

4. Types of supervised learning

• Predicting final exam score based on time spent - regression

• Pass/non-pass based on time spent

- binary classification

• Letter grade (A, B, C, E and F) based on time spent

- multi-label classification

출처 : https://www.youtube.com/channel/UCML9R2ol-l0Ab9OXoNnr7Lw

 

문제될 시 삭제하겠습니다!

강의를 완벽하게 다 보면 알아보기 쉽게 수정할 생각입니다.

'코딩 > Machine Learning' 카테고리의 다른 글

How to minimize cost  (0) 2021.01.22
Linear Regression2 and placeholders (1.X버전)  (0) 2021.01.22
Linear Regression  (0) 2021.01.22
TensorFlow Basics(1.X버전)  (0) 2021.01.22