0
0
ML Pythonml~5 mins

Time series evaluation metrics in ML Python - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is Mean Absolute Error (MAE) in time series evaluation?
MAE measures the average absolute difference between predicted and actual values. It shows how far predictions are from true values on average, using simple absolute differences.
Click to reveal answer
beginner
Explain Mean Squared Error (MSE) and why it is used.
MSE calculates the average of squared differences between predicted and actual values. Squaring emphasizes larger errors, making MSE sensitive to big mistakes.
Click to reveal answer
beginner
What does Root Mean Squared Error (RMSE) represent?
RMSE is the square root of MSE. It gives error in the same units as the data, making it easier to understand how far predictions are from actual values.
Click to reveal answer
intermediate
Describe Mean Absolute Percentage Error (MAPE) and its limitation.
MAPE shows average absolute error as a percentage of actual values. It is easy to interpret but can be misleading if actual values are near zero, causing very high or undefined percentages.
Click to reveal answer
intermediate
Why is R-squared (Coefficient of Determination) used in time series evaluation?
R-squared measures how well the model explains the variation in the data. A value close to 1 means predictions fit the data well, while values near 0 mean poor fit.
Click to reveal answer
Which metric gives error in the same units as the original data?
AMean Squared Error (MSE)
BRoot Mean Squared Error (RMSE)
CMean Absolute Error (MAE)
DMean Absolute Percentage Error (MAPE)
Which metric can be misleading when actual values are close to zero?
AMAPE
BR-squared
CRMSE
DMAE
What does a high R-squared value indicate in time series evaluation?
AOverfitting
BPoor model fit
CHigh error
DGood model fit
Which metric penalizes larger errors more heavily?
AMAE
BMAPE
CMSE
DR-squared
Which metric is best to use when you want an error measure easy to understand as a percentage?
AMAPE
BRMSE
CMAE
DMSE
Describe the main differences between MAE, MSE, and RMSE for evaluating time series predictions.
Think about how each metric treats errors and their units.
You got /3 concepts.
    Explain why MAPE can be problematic with certain time series data and when you might avoid using it.
    Consider what happens when dividing by numbers close to zero.
    You got /3 concepts.