Recall & Review
beginner
What is an imbalanced class problem in machine learning?It happens when one class has many more examples than another, making the model biased toward the bigger class.Click to reveal answer
beginner
What does SMOTE stand for and what does it do?
SMOTE means Synthetic Minority Over-sampling Technique. It creates new synthetic examples for the smaller class to balance the data.Click to reveal answer
beginner
How do class weights help with imbalanced classes?Class weights tell the model to pay more attention to the smaller class by making mistakes on it costlier during training.Click to reveal answer
intermediate
When should you prefer SMOTE over class weights?Use SMOTE when you want to increase data size by adding synthetic samples. Use class weights when you want to keep data as is but adjust training focus.Click to reveal answer
intermediate
What is a potential risk of using SMOTE?
SMOTE can create noisy or unrealistic samples if the minority class is very small or complex, which may confuse the model.Click to reveal answer
What problem does SMOTE solve?
✗ Incorrect
SMOTE creates synthetic samples to increase the number of minority class examples.
How do class weights affect model training?
✗ Incorrect
Class weights assign higher penalty to mistakes on minority class to balance learning.
Which method adds new data points to balance classes?
✗ Incorrect
SMOTE generates synthetic samples to increase minority class size.
What is a downside of using SMOTE?
✗ Incorrect
SMOTE may create noisy or unrealistic synthetic data if not used carefully.
When might class weights be preferred over SMOTE?
✗ Incorrect
Class weights adjust training focus without changing the data.
Explain how SMOTE works and why it helps with imbalanced classes.
Think about how adding new examples can help the model see more minority class data.
You got /4 concepts.
Describe how class weights influence model training on imbalanced data.
Consider how the model treats mistakes differently for each class.
You got /4 concepts.