What are the limitations of using R-Squared as the sole metric for evaluating the goodness of fit in a regression model?
- R-Squared always increases with more predictors; doesn't account for bias
- R-Squared always increases with more predictors; doesn't penalize complexity in the model
- R-Squared is sensitive to outliers; doesn't consider the number of predictors
- R-Squared provides absolute error values; not suitable for non-linear models
One major limitation of R-Squared is that it always increases with the addition of more predictors, regardless of whether they are relevant. This can lead to overly complex models that don't generalize well. R-Squared doesn't penalize for complexity in the model, making it possible to achieve a high R-Squared value with an overfitted model. It might not always be the best sole metric for assessing the goodness of fit.
What is the Confusion Matrix, and what information does it provide about a classification model?
- A matrix representing classification errors
- A matrix representing feature importance
- A matrix representing model's coefficients
- A matrix representing model's hyperparameters
The Confusion Matrix is a table that describes the performance of a classification model by categorizing predictions into True Positives, False Positives, True Negatives, and False Negatives. It gives detailed insight into where the model is making mistakes.
A set of input variables and corresponding target values used to evaluate a model's performance is referred to as a _________ set.
- evaluation
- testing
- training
- validation
A "testing" set consists of input variables and corresponding target values used to assess a machine learning model's performance on unseen data, allowing for a more robust evaluation.
The assumption that the relationship between the independent and dependent variable is linear in Simple Linear Regression is called the assumption of _________.
- Homoscedasticity
- Independence
- Linearity
- Normality
The assumption of linearity ensures that the relationship between the independent and dependent variable is linear, which is fundamental to Simple Linear Regression.
What type of learning algorithm utilizes labeled data to make predictions?
- Reinforcement Learning
- Semi-supervised Learning
- Supervised Learning
- Unsupervised Learning
Supervised Learning uses labeled data, where the output is known, to train the algorithm and make predictions.
The slope coefficient in Simple Linear Regression gives the _________ change in the dependent variable for a one-unit change in the independent variable.
- Absolute
- Constant
- Incremental
- Marginal
The slope coefficient in Simple Linear Regression gives the marginal change in the dependent variable for a one-unit change in the independent variable.
What is Accuracy in the context of classification metrics?
- False Positives / Total predictions
- Total correct predictions / Total predictions
- True Negatives / (True Negatives + False Positives)
- True Positives / (True Positives + False Negatives)
Accuracy is the ratio of correct predictions to the total number of predictions. It gives an overall measure of how well the model is performing, but may not be suitable for imbalanced datasets where one class dominates.
You are working on a dataset with an imbalanced class distribution. How would you apply Cross-Validation to ensure that each fold maintains the same class distribution?
- Applying Cross-Validation without folding
- Using Leave-One-Out Cross-Validation
- Using k-fold Cross-Validation with random sampling
- Using stratified k-fold Cross-Validation
Using stratified k-fold Cross-Validation ensures that each fold maintains the same class distribution by having the same proportion of each class as the entire dataset. It's a suitable choice for imbalanced class distribution, as it guarantees that each fold is a representative sample of the overall class proportions in the dataset.
Why might it be important to consider interaction effects in a Multiple Linear Regression model?
- It captures complex relationships
- It increases accuracy independently
- It reduces bias
- It simplifies the model
Considering interaction effects is essential to capture complex relationships between variables that might not be apparent when considering each variable separately.
Describe how Machine Learning algorithms are implemented in sentiment analysis and customer feedback systems.
- Drug Discovery
- Image Recognition
- Inventory Management
- Text Classification
Sentiment analysis in customer feedback systems often involves text classification techniques. Machine learning algorithms like SVM, Naïve Bayes, or deep learning models can categorize customer comments into positive, negative, or neutral sentiment.