You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ML-For-Beginners/4-Classification/3-Classifiers-2/README.md

68 lines
1.7 KiB

3 years ago
# Recipe Classifiers 2
4 years ago
In this second Classification lesson, you will explore more ways to classify data, and the ramifications for choosing one over the other.
3 years ago
## [Pre-lecture quiz](https://jolly-sea-0a877260f.azurestaticapps.net/quiz/21/)
4 years ago
3 years ago
Scikit-Learn offers a similar, but more granular cheat sheet that can further help narrow down your estimators (another term for classifiers):
![ML Map from Scikit-Learn](images/map.png)
This map is very helpful as you can 'walk' along its paths to a decision:
- We have >50 samples
- We want to predict a category
- We have labeled data
- We have fewer than 100K samples
- We can choose a Linear SVC
- If that doesn't work, since we have numeric data
- We can try a KNeighbors Classifier and if that doesn't work, try SVC and Ensemble Classifiers
This is a terrific trail to try. For our first foray, explore how well
4 years ago
### Introduction
Describe what will be covered
> Notes
### Prerequisite
What steps should have been covered before this lesson?
### Preparation
Preparatory steps to start this lesson
---
[Step through content in blocks]
## [Topic 1]
### Task:
Work together to progressively enhance your codebase to build the project with shared code:
```html
code blocks
```
✅ Knowledge Check - use this moment to stretch students' knowledge with open questions
## [Topic 2]
## [Topic 3]
## 🚀Challenge
Add a challenge for students to work on collaboratively in class to enhance the project
4 years ago
Optional: add a screenshot of the completed lesson's UI if appropriate
3 years ago
## [Post-lecture quiz](https://jolly-sea-0a877260f.azurestaticapps.net/quiz/22/)
4 years ago
## Review & Self Study
## Assignment
[Assignment Name](assignment.md)