일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- SGD
- CPP
- 딥러닝
- recommender system
- Unsupervised learning
- 로지스틱 회귀
- Regularization
- C++
- Vision
- Kaggle
- 비용함수
- cs231n
- 인공지능
- petal to metal
- logistic regression
- Support Vector Machine
- 컴퓨터 그래픽스
- 신경망
- CNN
- 백준
- SVM
- 머신러닝
- OpenGL
- 추천 시스템
- 파이썬
- 컴퓨터 비전
- pre-trained
- neural network
- Computer Vision
- 그래픽스
- Today
- Total
kwan's note
supervised learning -지도학습 본문
출처: machine learning by andrew ng, stanford cousera lecture
수강일시: 2021.01.24
reminder-by-kwan.tistory.com/85
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
'ML and AI > Machine learning - Andrew Ng' 카테고리의 다른 글
Normal Equation-정규방정식 (0) | 2021.01.26 |
---|---|
gradient descent(경사하강법) (0) | 2021.01.24 |
Cost function -비용함수/ 손실함수 (0) | 2021.01.24 |
unsupervised learning -비지도학습 (0) | 2021.01.24 |
machine learning - Andrew Ng, Stanford(coursera) (0) | 2021.01.24 |