I am using Facebook's Fasttext for performing text classification. I wanted to know how fasttext library handle the numbers in a text string provided as input for word vectorization.
Do fasttext typecast each number as a string before creating word vectors?
For e.g. 1124 to " 1124 "
Or any other transformation/preprocessing is performed in the background before training?
For e.g. 1124 to " one one two four "
What should be the most optimal approach to handle numerical data if my input text to fasttext contains numbers?