Recall & Review
beginner
What does RMSE stand for and what does it measure?
RMSE stands for Root Mean Squared Error. It measures the average size of the errors between predicted values and actual values, giving more weight to larger errors.
Click to reveal answer
beginner
Explain precision@k in simple terms.
Precision@k measures how many of the top k items recommended by a model are actually relevant or correct. It helps check the quality of recommendations.
Click to reveal answer
intermediate
Why is RMSE sensitive to large errors?
Because RMSE squares the errors before averaging, bigger errors become much larger when squared, making RMSE more sensitive to those large mistakes.
Click to reveal answer
beginner
How would you interpret a precision@5 score of 0.8?
It means that out of the top 5 items recommended, 4 are relevant or correct (since 0.8 × 5 = 4). So, 80% of the top 5 recommendations are good.
Click to reveal answer
beginner
What kind of problems is RMSE commonly used for?
RMSE is commonly used for regression problems where the goal is to predict continuous numbers, like house prices or temperatures.
Click to reveal answer
What does RMSE measure in a model's predictions?
✗ Incorrect
RMSE measures the average size of the errors between predicted and actual values.
Precision@k is useful for evaluating which type of model?
✗ Incorrect
Precision@k evaluates how many of the top k recommended items are relevant, so it is used for recommendation or ranking models.
If RMSE is very high, what does it mean about the model's predictions?
✗ Incorrect
A high RMSE means the model's predictions have large errors compared to actual values.
Which of these is true about precision@k?
✗ Incorrect
Precision@k counts how many relevant items appear in the top k results of a recommendation or ranking.
Why do we square errors when calculating RMSE?
✗ Incorrect
Squaring errors makes larger errors count more, so RMSE is sensitive to big mistakes.
Describe what RMSE is and how it helps evaluate a model.
Think about how RMSE shows the average size of prediction mistakes.
You got /4 concepts.
Explain precision@k and why it is useful for recommendation systems.
Consider how we check if the top suggestions are actually good.
You got /4 concepts.