Forecasting is the process of training models on historical data and then using them to predict future observations. It is known as time-series forecasting because it comes under time series analysis and there's a timestamp associated with every data point for this problem type. It is arguably one of the hardest problem types because of the fact that the future is completely unknown and uncertain and we only have the luxury of the past to estimate the uncertain future. Here's a quick evaluation recipe to quickly understand the quality of the forecasts:
Start with accuracy and point-wise accuracy, if there is a significant increase in both as compared to baseline then the model is learning useful patterns. The percentage increase varies greatly from case to case and is dependent on a variety of factors
Check cov-acc graph (left one on metric dashboard), if it looks dispersed then your cov would be a bit high (0.2 to 0.5 in general) otherwise it should be low (<0.15 in general)
Check the breakdown of items by quartile of accuracy and make sure that accuracies for the item ids in the Top 25% are high and the ones in the Worst 25% are not too low (>40%)
If all of the above things look good then the model is good to go and you have trained a world-class deep learning-based forecasting model in just a few minutes with only a few clicks.