FastText StaticVectors model

This model is an export of these FastText English Vectors (wiki-news-300d-1M-subword.vec.zip) for staticvectors. staticvectors enables running inference in Python with NumPy. This helps it maintain solid runtime performance.

Usage with StaticVectors

from staticvectors import StaticVectors

model = StaticVectors("neuml/fasttext")
model.embeddings(["word"])

Given that pre-trained embeddings models can get quite large, there is also a SQLite version that lazily loads vectors.

from staticvectors import StaticVectors

model = StaticVectors("neuml/fasttext/model.sqlite")
model.embeddings(["word"])
Downloads last month
7
Safetensors
Model size
300M params
Tensor type
F32
·
Inference Providers NEW
This model is not currently available via any of the supported third-party Inference Providers, and HF Inference API has been turned off for this model.

Model tree for NeuML/fasttext

Finetunes
1 model

Collection including NeuML/fasttext