We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I see that there is an error when loading big models. I used the cc.en.300.bin example of the fastText webpage:
cc.en.300.bin
https://fasttext.cc/docs/en/crawl-vectors.html
Used code:
const path = require('path'); const fastText = require('fasttext'); const model = path.resolve(__dirname, './cc.en.300.bin'); const query = new fastText.Query(model); query.nn('salmon', 5) .then(r => console.log(r)) .catch(e => console.log('Error', e))
Error on execute:
error Command failed with signal "SIGSEGV".
The text was updated successfully, but these errors were encountered:
Node version v14.15.5
v14.15.5
Sorry, something went wrong.
No branches or pull requests
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:
Error on execute:
The text was updated successfully, but these errors were encountered: