Model Classifications Flashcards
Parametric / Non-parametric models etc
Some examples of parametric models
- Linear Regression
- Logistic Regression
- Naive Bayes
- Simple Neural Networks
Some examples of Non-Parametric models are:
- K Nearest Neighbors
- Support Vector Machines
- Decision Trees
Def parametric model
A learning model that summarizes data with a set of parameters of fixed size. Specifically, a parametric model is a family of probability distributions that has a finite number of parameters.
Strengths of Parametric Models?
- Simpler: These methods are easier to understand and the results are easy to interpret. - Speed: Parametric models are usually very fast to train. - Less Data: They do not require as much training data and can work well even if the fit to the data is not perfect.
Weaknesses of Parametric Models?
-Constrained: By choosing a functional form, these methods are highly constrained to the specified form. -Limited Complexity: The methods are more suited to simpler problems. -Poor Fit: In practice, the methods may not always match the underlying mapping function.
Def non-parametric model
A learning model that does not make strong
assumptions about the form of the mapping function. By not making assumptions, ____________ are free to learn
any functional form from the training data.
Strengths of non-parametric models
- Flexibility: Capable of fitting a large number of functional forms. - Power: No assumptions (or weak assumptions) about the underlying function. - Performance: Can result in higher performance models for prediction.
Weaknesses of non-parametric models
- More data: Require a lot more training data to estimate the mapping function. - Slower: A lot slower to train, as they often have far more parameters to train. - Overfitting: Have a higher risk of overfitting against the training data
Lazy or instance-based learners or
rote learners
A class of non-parametric learning methods that do not generate a model but instead make use of verbatim training data for classification.
An individual independent example of the concept
represented by the dataset. It is described by a set of
attributes or features
Instance / row / observation
Property or characteristic of an instance. These can
either be discrete or continuous.
Feature / variable
The attribute or feature that is described by the other
features within an instance.
Class / label
The ___________ of a dataset represents the number of features in the dataset.
dimensionality
Data _______ and _______ describe
the degree to which data exists for
each feature of all observations.
Density / Sparsity
_________ is the process
of reducing noise in the
data.
This can be done by:
- __________
- __________
- __________
Smoothing
Binning
Clustering
Regression