I've just started to use FastText. I'm doing a cross validation of a small dataset by using as input the .csv
file of my dataset. To process the dataset I'm using this parameters:
model = fasttext.train_supervised(input=train_file,
lr=1.0,
epoch=100,
wordNgrams=2,
bucket=200000,
dim=50,
loss='hs')
However I would like to use the pre-trained embeddings from wikipedia available on the FastText website. Is it feasible? If so, I have to add a specific parameter to the parameters list?