oborchers
commited on
Commit
•
524aebf
1
Parent(s):
29e5466
initial release
Browse files- .gitattributes +2 -0
- README.md +15 -0
.gitattributes
CHANGED
@@ -25,3 +25,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
25 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
26 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
27 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
25 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
26 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
27 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
28 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
29 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- glove
|
4 |
+
- gensim
|
5 |
+
- fse
|
6 |
+
---
|
7 |
+
# Word2Vec
|
8 |
+
|
9 |
+
Pre-trained vectors trained on a part of the Google News dataset (about 100 billion words). The model contains 300-dimensional vectors for 3 million words and phrases. The phrases were obtained using a simple data-driven approach described in 'Distributed Representations of Words and Phrases and their Compositionality'
|
10 |
+
|
11 |
+
Read more:
|
12 |
+
* https://code.google.com/archive/p/word2vec/
|
13 |
+
* https://arxiv.org/abs/1301.3781
|
14 |
+
* https://arxiv.org/abs/1310.4546
|
15 |
+
* https://www.microsoft.com/en-us/research/publication/linguistic-regularities-in-continuous-space-word-representations/?from=http%3A%2F%2Fresearch.microsoft.com%2Fpubs%2F189726%2Frvecs.pdf
|