How to plot Predicted vs True Values from fastai tabular data?

Hello , I am playing around with fast v1 and trying to plot the rossmann sales ( course v3 ) actual vs predicted. Any ideas how we can do that ? Thanks for your help on this.

You should call preds,targs = learn.get_preds() then you can plot your predictions and your targets (note that you may need to put an exp there since there is a log applied IIRC).

1 Like

Great . Thanks for your response, it works.