Chapter 18 Predictive Modeling Project Template Flashcards

1
Q

WHAT ARE THE STEPS FOR APPROACHING ANY PREDICTIVE MODELING ML PROJECT? P115 (Project Template P116)

A
Define The Problem
Summarize Data
Prepare Data
Evaluate Algorithms
Improve Results
Present Results
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

WHAT ARE THE THINGS WE NEED TO DO TO PREPARE DATA? P117

A

Cleaning data by removing duplicates, marking missing values and even imputing missing values
Feature selection where redundant features may be removed and new features developed.
Data transforms where attributes are scaled or redistributed in order to best expose the structure of the problem later to learning algorithms

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

HOW CAN WE IMPROVE OUR MODELS? P118

A

ˆ Search for a combination of parameters (Tuning) for each algorithm using scikit-learn that yields the best results.
ˆ Combine the prediction of multiple models into an ensemble prediction using ensemble techniques.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly