kwan's note

supervised learning -지도학습 본문

ML and AI/Machine learning - Andrew Ng

supervised learning -지도학습

kwan's note 2021. 1. 24. 14:59
반응형

출처: machine learning by andrew ng, stanford cousera lecture

수강일시: 2021.01.24 

 

 

reminder-by-kwan.tistory.com/85

 

machine learning - Andrew Ng, Stanford(coursera)

이 복습노트는 Stanford의 Andrew Ng 교수님의 machine learning 강의를 수강하고 작성하였습니다. 전 노트는 cousera수업을 기반으로 작성하였습니다. www.coursera.org/learn/machine-learning/home Coursera |..

reminder-by-kwan.tistory.com

 

 

 

 

if we know the size of tumor, can we estimate the probability of that tumor being malignant?

this is problem of classification.

 

most real word ml problem consider not only 2 or3 but thousands of features

 

-> using svm(support vector machine) make us allow to use infinit number of features

 

 

 

 

Q

 

You’re running a company, and you want to develop learning algorithms to address each of two problems. Problem 1:You have a large inventory of identical items. You want to predict how many of these items will sell over the next 3 months.

Problem 2: You’d like software to examine individual customer accounts, and for each account decide if it has been hacked/compromised. Should you treat these as classification or as regression problems?

 

1.Treat both as classification problems.

2.Treat problem 1 as a classification problem, problem 2 as a regression problem.

3.Treat problem 1 as a regression problem, problem 2 as a classification problem.

4.Treat both as regression problems.

 

answer 3

반응형