dchaplinsky commited on
Commit
6209f90
1 Parent(s): 0fc93e6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -0
README.md CHANGED
@@ -1,3 +1,13 @@
1
  ---
2
  license: mit
 
 
 
3
  ---
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ tags:
4
+ - feature-extraction
5
+ library_name: generic
6
  ---
7
+
8
+ Usage
9
+ ```
10
+ import fasttext.util
11
+ ft = fasttext.load_model('cc.en.300.bin')
12
+ ft.get_word_vector('hello')
13
+ ```