python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Fitting a Gensim Fasttext pretrained model to my text
I have a pretrained fast text model, I have loaded it into my notebook and want to fit it to my free form text to train a ML classifier.
import pandas as pd
from sklearn.model_selection import train_t...
Arica Christensen
Votes: 0
Answers: 1
Export fasttext vectors (korean) from fastText to spacy (UnicodeDecodeError)
Hi everyone i downloaded the korean fasttext model from FastText Korean Model and tried to export it to spacy using this code:
#!/usr/bin/env python
# coding: utf8
from __future__ import unicode_liter...
Laz22434
Votes: 0
Answers: 0
Unable to Load FastText model
I am trying to load the FastText and save that as a model so that I can deploy that on production as the file size is 1.2 gb and wont be a good practice to use that on Prod.
Can anyone suggest an appr...
Omkar Kadam
Votes: 0
Answers: 2
How can I deploy a fasttext model on google cloud?
I just want to have a model I can reach via REST API, and the model just has to be this :
import fasttext
ft = fasttext.load_model('pretrained model location')
But I want it to be on the Google Clou...
SalvorHardin
Votes: 0
Answers: 0