CoolFace
Modelpublic

NeuML/glove-2024-wikigiga

sourceHugging Facepddlupdated 1y agoView on Hugging Face
1likes15downloads
Model Card

GloVe 2024 WikiGiga StaticVectors model

This model is an export of the new GloVe 2024 WikiGiga Vectors (300d) for `staticvectors`. staticvectors enables running inference in Python with NumPy. This helps it maintain solid runtime performance.

Usage with StaticVectors

python
from staticvectors import StaticVectors

model = StaticVectors("neuml/glove-2024-wikigiga")
model.embeddings(["word"])

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

python
from staticvectors import StaticVectors

model = StaticVectors("neuml/glove-2024-wikigiga/model.sqlite")
model.embeddings(["word"])