I am working on a text classification problem, that is, given some text, I need to assign to it certain given labels.
I have tried using fast-text library by Facebook, which has two utilities of interest to me:
A) Word Vectors with pre-trained models
B) Text Classification utilities
However, it seems that these are completely independent tools as I have been unable to find any tutorials that merge these two utilities.
What I want is to be able to classify some text, by taking advantage of the pre-trained models of the Word-Vectors. Is there any way to do this?