node-fasttext
node-fasttext copied to clipboard
Nodejs binding for fasttext representation and classification.
simply updated to their master https://github.com/facebookresearch/fastText/commits/master process: (clone this repo) ``` git submodule init git pull --recurse-submodules cd fastText git checkout master git pull cd .. git add . git...
I see that there is an error when loading big models. I used the `cc.en.300.bin` example of the fastText webpage: https://fasttext.cc/docs/en/crawl-vectors.html Used code: ```js const path = require('path'); const fastText...
Hi, I have tried using node-fasttext library in a project. To identify the best model parameters, I have relied on the official fasttext binary. When I use the same parameters...
if I have an express controller: Controller.js `model: string //path postMethod(text) { const textClassifier = new Fasttext(model); // here memory leak! return textClassifier.predict(text); } ` Memory grows without limit on...
it seems that node-fasttext cannot use the models file that we generate from fastText binary itself. I think there was a big change in the model format a few months...