02 : Supervised Learning Flashcards
(9 cards)
1
Q
2 subtypes of supervised machine learning ?
A
- Classification : Predicting a category or class label from a set of predefined labels.
- Regression : Predicting a continuous numerical value based on input data
2
Q
2 types of classification ?
A
- Binary classification : classificaton between exactly two classes
- Multiclass classification : classification between more than two classes
3
Q
Use cases in classification ?
A
- Is customer likes to leave the network ?
- Is the patient infected with the disease ?
- What types of disease does the patient have ?
- What is the genre of music ?
4
Q
Use cases in Regression ?
A
- How much will be my monthly electricity cost for the next three years?
- What will be the temerature for the next five days?
5
Q
Examples of Supervising Learning?
A
- Predict whether an email is spam or not.
- Identify handwritten digits from images.
- Classify the type of disease patient has based on symtomps.
- Identify the peoples who going in and going out from an airport using facial recognition.
6
Q
Types of Regression?
A
- Linear regression
- Polynomial regression
- Support vector regression
- Decision tree regression
- Random forest regression
- Ridge regression
- Lasso regression
- Logistic regression
7
Q
Algorithms of Classification and Regression?
A
Classification :
* Logitic regression
* Decision tree
* Support vector machine
Regression :
* Linear regression
* Polynomial regression
8
Q
Advantages of Supervised learning?
A
- Highly accurate
- Efficient for many tasks
- Easy to interprit results
9
Q
Challenges of Supervised learning?
A
- Labeled data can be expensive and time consuming
- Overfitting
- Not suitable for all problems