Machine Learning Flashcards
What is Artificial Intelligence (AI)?
AI involves machines perceiving their environment and taking actions to achieve human-set goals.
Give examples of AI applications mentioned in the lecture.
Facebook’s Deepface, Uber’s self-driving cars, Apple Siri, and Google Translate.
What distinguishes machine learning from traditional econometrics?
ML focuses on outcome prediction, while econometrics emphasizes parameter estimation and hypothesis testing.
Name three Machine Learning methods mentioned.
Ridge regression, LASSO, and decision trees.
What is the bias in Machine Learning models?
The average error between the true function and the model’s prediction.
What does the variance measure in Machine Learning models?
The variability of the model’s predictions across different datasets.
How does model complexity affect bias and variance?
High complexity reduces bias but increases variance, leading to overfitting.
What is overfitting?
When a model fits the training data well but performs poorly on new, unseen data.
What is R-Squared, and how is it calculated?
R-Squared measures the goodness-of-fit and is calculated as 1 - RSS/TSS.
Why is adjusted R-Squared preferred over R-Squared?
Adjusted R-Squared accounts for the number of predictors, penalizing overly complex models.
What are AIC and BIC?
Model selection criteria that penalize model complexity. BIC imposes a stronger penalty.
What do machine learning models penalize besides complexity?
Large coefficient estimates to reduce out-of-sample prediction variance.
What does OLS minimize?
The sum of squared residuals.
How does ridge regression modify OLS?
It adds a penalty proportional to the sum of squared coefficients.
How does the LASSO estimator differ from ridge regression?
LASSO uses the absolute values of coefficients as a penalty, which can shrink some coefficients to zero.