0
0
ML Pythonml~5 mins

Retraining strategies in ML Python - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the main goal of retraining a machine learning model?
The main goal is to update the model with new data so it stays accurate and adapts to changes over time.
Click to reveal answer
intermediate
What is incremental retraining?
Incremental retraining means updating the model by training it on new data without starting from scratch, saving time and resources.
Click to reveal answer
beginner
Why is it important to monitor model performance before retraining?
Monitoring helps detect when the model's accuracy drops, signaling that retraining is needed to maintain good predictions.
Click to reveal answer
intermediate
What is the difference between full retraining and incremental retraining?
Full retraining trains the model from scratch using all data, while incremental retraining updates the existing model using only new data.
Click to reveal answer
intermediate
Name one challenge of retraining machine learning models.
One challenge is avoiding overfitting to new data, which can reduce the model's ability to generalize to unseen data.
Click to reveal answer
What triggers the need for retraining a machine learning model?
AWhen model performance decreases
BWhen the model is first created
CWhen the training data is perfect
DWhen the model is deployed
Which retraining strategy updates the model using only new data?
ABatch training
BFull retraining
CTransfer learning
DIncremental retraining
What is a risk of retraining a model too often?
AModel becomes outdated
BModel size decreases
CModel overfits to recent data
DModel stops learning
Which of these is NOT a common retraining trigger?
AModel accuracy improves
BData distribution changes
CNew data becomes available
DPerformance metrics degrade
What does full retraining involve?
ATraining only on new data
BTraining from scratch on all data
CUpdating model weights manually
DUsing a smaller dataset
Explain why and when a machine learning model should be retrained.
Think about what happens when the model sees new or different data.
You got /4 concepts.
    Describe the difference between full retraining and incremental retraining.
    Consider how much data is used and how long retraining takes.
    You got /4 concepts.