In classification, when a model is biased toward predicting one class over another, it is known as a(n) ________ problem.
- Clustering
- Imbalanced classification
- Multiclass classification
- Overfitting
When a model consistently predicts one class over another, particularly when the classes are not equally represented, this is known as an imbalanced classification problem.
You notice that a Decision Tree is providing inconsistent results on different runs. How might you investigate and correct the underlying issue, possibly involving entropy, Gini Index, or pruning techniques?
- Analyze the randomness in splitting and apply consistent pruning techniques
- Change to a different algorithm
- Ignore inconsistent results
- Increase tree depth
Inconsistent results may stem from the randomness in splitting the data. Analyzing this aspect and applying consistent pruning techniques can help create more stable, reproducible results. Attention to the splitting criteria, such as entropy or Gini Index, can further refine the model's behavior.
What is the primary goal of clustering algorithms?
- To classify labeled data
- To find patterns and group similar data together
- To predict outcomes
- To solve reinforcement learning problems
The primary goal of clustering algorithms is to find patterns in the data and group similar data points together without using any labeled responses.
In a scenario where dimensionality reduction is essential but preserving the original features' meaning is also crucial, how would you approach using PCA?
- You would avoid PCA and use another method
- You would carefully interpret the principal components in terms of original features
- You would perform PCA on a subset of the original features
- You would use PCA without considering the original features' meaning
In this scenario, careful interpretation of the principal components in terms of the original features would be the key to preserve their meaning while still benefiting from dimensionality reduction.
What are the challenges in imbalanced classification problems?
- Balanced data
- Equal representation of all classes
- No challenges
- Overfitting to the majority class
Imbalanced classification problems, where the classes are not equally represented, can lead to models that are biased towards the majority class. This can result in poor performance on the minority class, requiring special techniques to address.
The ___________ matrix in LDA represents the spread of the individual classes around their mean.
- between-class scatter
- correlation
- covariance
- within-class scatter
The "within-class scatter" matrix in LDA represents the spread of the individual classes around their mean, capturing the within-class variance.
Explain how cross-validation can be used to mitigate the risk of overfitting.
- By adding noise to the training data
- By increasing model complexity
- By reducing model complexity
- By splitting the data into multiple subsets and training on different combinations
Cross-validation mitigates the risk of overfitting "by splitting the data into multiple subsets and training on different combinations." It ensures that the model is evaluated on unseen data and helps in tuning hyperparameters without relying on the test set.
____________ Learning, a subset of Machine Learning, is essential in training robots to perform specific tasks in manufacturing industries.
- Disease Prediction
- Fraud Detection
- Reinforcement
- Weather Prediction
Reinforcement Learning, a subset of Machine Learning, plays a crucial role in training robots for specific tasks in manufacturing through trial and error and receiving feedback from the environment.
What is the primary purpose of using regularization techniques in Machine Learning models?
- Enhance data visualization
- Increase accuracy
- Increase model complexity
- Reduce overfitting
Regularization techniques are used to prevent overfitting by adding constraints to the model, thus helping it to generalize better on unseen data.
ElasticNet is a hybrid regularization technique that combines the L1 penalty of ________ and the L2 penalty of ________.
- ElasticNet, Ridge
- Lasso, Ridge
- Ridge, Lasso
- nan
ElasticNet combines the L1 penalty of Lasso and the L2 penalty of Ridge, providing a middle ground between the two techniques.