File size: 876 Bytes
7515d5e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
---
tags:
- sentence-similarity
inference: false
license: pddl
language: en
library_name: staticvectors
---
# GloVe 2024 WikiGiga StaticVectors model
This model is an export of the new [GloVe 2024 WikiGiga Vectors](https://nlp.stanford.edu/projects/glove/) (_300d_) for [`staticvectors`](https://github.com/neuml/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"])
```
|