Getting a accuracy of 100% on validation set but model giving awful predictions(ULMFit)

Hi,
I am using the ULMFit model on amazon review data. I am using around 300000 datapoints equally divided among positive and negative. My Language Model is getting an accuracy of 0.75 while the accuracy on validation set for classifier model is 1.00.

But the model is giving very bad predictions.

learn.predict("This product is awesome. I really love it")
(Category 0, tensor(0), tensor([0.9667, 0.0333]))

Again,

learn.predict("Horrible product. I would never use it.")
(Category 0, tensor(0), tensor([0.9667, 0.0333]))

Google Colab Notebook Link:https://colab.research.google.com/drive/1y4sRWcP-LIKfVNszvCI5nXbD7U4vdwW2

Can someone help me out?