Learning from Data Flashcards
(9 cards)
What are the two types of Learning?
Supervised Learning and Unsupervised Learning.
What is supervised learning?
The most common form of machine learning, it requires that training data be labelled and attempts to learn a mapping function to go from input features to output labels.
What is unsupervised learning?
A Machine Learning method that attempts to “make sense” of the data and does not have the associated labels for data points.
What are the parameters in a supervised learning model?
These are the values that change as the model learns from the data. In a linear regression model, this would be the beta values.
What are hyperparameters?
A parameter not learned directly from the data but relates to implementation.
How is predicition quality measured in a supervised learning model?
A loss function is used; this provides some quantitative measure of how close the predictions are to the actual values.
What are the types of supervised learning?
Regression and Classification.
What is a regression model used for?
Regression is used for modeling any continuos target or outcome such as loss, revenue, time etc
What is a classification model used for?
Classification is used to identify which set of categories an observation belongs to.