File size: 464 Bytes
a150806
17fbad2
 
 
9b3a5aa
a150806
17fbad2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
tags:
- glove
- gensim
license: pddl
---

# Glove Twitter 

Pre-trained glove vectors based on 2B tweets, 27B tokens, 1.2M vocab, uncased.

Read more:
* https://nlp.stanford.edu/projects/glove/
* https://nlp.stanford.edu/pubs/glove.pdf

## Example Usage

```python
import gensim.downloader as api
model = api.load("glove-twitter-25", from_hf=True)
model.most_similar(positive=['fruit', 'flower'], topn=1)

"""
Output:

[('cherry', 0.9183273911476135)]
"""
```