CoolFace
Modelpublic

NeuML/glove-2024-dolma

sourceHugging Facepddlupdated 1y agoView on Hugging Face
3likes33downloads
Model Card

GloVe 2024 Dolma StaticVectors model

This model is an export of the new GloVe 2024 Dolma 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-dolma")
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-dolma/model.sqlite")
model.embeddings(["word"])