English
word2vec
lbourdois commited on
Commit
5014041
1 Parent(s): 35fbaf8

Rename README to README.md

Browse files
Files changed (2) hide show
  1. README +0 -4
  2. README.md +26 -0
README DELETED
@@ -1,4 +0,0 @@
1
- This archive is part of the NLPL Word Vectors Repository (http://vectors.nlpl.eu/repository/), version 2.0, published on Friday, December 27, 2019.
2
- Please see the file 'meta.json' in this archive and the overall repository metadata file http://vectors.nlpl.eu/repository/20.json for additional information.
3
- The life-time identifier for this model is:
4
- http://vectors.nlpl.eu/repository/20/5.zip
 
 
 
 
 
README.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: eng
3
+ tags:
4
+ - word2vec
5
+ datasets: English_Wikipedia_Dump_of_February_2017
6
+ license: cc-by-4.0
7
+ ---
8
+
9
+ ## Information
10
+ A word2vec model trained by Andrey Kutuzov (andreku@ifi.uio.no) on a vocabulary of size 273992 corresponding to 2252637050 tokens from the dataset `English_Wikipedia_Dump_of_February_2017`.
11
+ The model is trained with the following properties: lemmatization and postag with the algorith Gensim Continuous Skipgram with window of 5 and dimension of 300.
12
+
13
+ ## How to use?
14
+ ```
15
+ from gensim.models import KeyedVectors
16
+ from huggingface_hub import hf_hub_download
17
+ model = KeyedVectors.load_word2vec_format(hf_hub_download(repo_id="Word2vec/eng_lem_postag_300_cont_skip_5_English_Wikipedia_Dump_of_February_2017", filename="model.bin"), binary=True, unicode_errors="ignore")
18
+ ```
19
+
20
+ ## Citation
21
+ Fares, Murhaf; Kutuzov, Andrei; Oepen, Stephan & Velldal, Erik (2017). Word vectors, reuse, and replicability: Towards a community repository of large-text resources, In Jörg Tiedemann (ed.), Proceedings of the 21st Nordic Conference on Computational Linguistics, NoDaLiDa, 22-24 May 2017. Linköping University Electronic Press. ISBN 978-91-7685-601-7
22
+
23
+ This archive is part of the NLPL Word Vectors Repository (http://vectors.nlpl.eu/repository/), version 2.0, published on Friday, December 27, 2019.
24
+ Please see the file 'meta.json' in this archive and the overall repository metadata file http://vectors.nlpl.eu/repository/20.json for additional information.
25
+ The life-time identifier for this model is:
26
+ http://vectors.nlpl.eu/repository/20/5.zip