Chapter 5 Flashcards
(70 cards)
Before Machine Learning, we program ______ to recognize an apple given images of apple.
logic/algorithm
With Machine Learning, given new images of apple, ______ make the prediction.
Machine Learning Models
In Supervised Learning, we build a machine that can extract ______ between variables.
relationships
Lazy learning algorithms generalize only when ______, rather than during the training phase.
queried
During the training phase of lazy learning, the algorithm accepts the data as input but refrains from ______ on it.
actively training
In lazy learning, the actual model training occurs during the ______.
prediction phase
An example of a lazy learning algorithm is the ______ algorithm.
K-nearest neighbors (KNN)
Eager learning algorithms process data during the ______ phase.
training
Examples of eager learning algorithms include Linear Regression, Logistic Regression, Support Vector Machines, Decision Trees, and ______.
Artificial Neural Networks
Instance-based learning involves using the ______ to make predictions.
entire dataset
In instance-based learning, the machine compares the new data to the instances it has seen before and uses the ______ to make a prediction.
closest match
In instance-based learning, ______ is created; instead, the machine stores all of the training data.
no model
Instance-based learning is often used in pattern recognition, ______, and anomaly detection.
clustering
Model-based learning involves creating a ______ that can predict outcomes based on input data.
mathematical model
In model-based learning, the model can be thought of as a set of ______ that the machine uses to make predictions.
rules
Parametric models make specific ______ about the relationship between input and output data.
hypotheses
In parametric models, assumptions concern a ______ of parameters and variables that impact the model’s result.
fixed number
Parametric models are easier to understand as they build a certain ______ about the data input that has to be followed.
hypothesis
Because of the assumptions they make, parametric models often need ______ to reach a certain level of accuracy.
less data
If the hypothesis is met, parametric models can be more efficient and perform better than ______.
non-parametric
A limitation of parametric models is that the assumption often ______ the problem.
simplifies
Parametric models have proven to be sensitive to outliers, show limited performance to ______ problems, and struggle to adapt to new unseen data.
nonlinearity
Non-parametric models don’t need to make ______ about the relations between the input and output to generate an outcome.
assumptions
Non-parametric models also don’t require a certain number of ______ to be set and learned.
parameters