For time series prediction using RNNs, common metrics include Mean Squared Error (MSE), Mean Absolute Error (MAE), and Root Mean Squared Error (RMSE). These measure how close the predicted values are to the actual values. Lower values mean better predictions.
When the task is classification on time series data, metrics like accuracy, precision, recall, and F1 score become important.
Choosing the right metric depends on the goal: for continuous value prediction, use error metrics; for classification, use classification metrics.