dkagramanyan commited on
Commit
10b8f09
1 Parent(s): 639a3a0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -0
README.md CHANGED
@@ -3,6 +3,8 @@ datasets:
3
  - armvectores/hy_wikipedia_2023
4
  library_name: fasttext
5
  pipeline_tag: feature-extraction
 
 
6
  ---
7
 
8
  414M tokens
@@ -21,4 +23,13 @@ minimum number of words 150
21
 
22
  26 hours on 20 xeon gold cores
23
 
 
24
 
 
 
 
 
 
 
 
 
 
3
  - armvectores/hy_wikipedia_2023
4
  library_name: fasttext
5
  pipeline_tag: feature-extraction
6
+ language:
7
+ - hy
8
  ---
9
 
10
  414M tokens
 
23
 
24
  26 hours on 20 xeon gold cores
25
 
26
+ How to use
27
 
28
+ ```
29
+ import fasttext
30
+
31
+ model = fasttext.load_model('output.bin')
32
+
33
+ model.get_nearest_neighbors('զենքեր')
34
+
35
+ ```