Update app.py
Browse files
app.py
CHANGED
@@ -33,7 +33,7 @@ def clean_words(words):
|
|
33 |
|
34 |
path = "cc.en.300.vec"
|
35 |
# path = "cc.fr.300.vec"
|
36 |
-
m = KeyedVectors.load_word2vec_format(path, limit =
|
37 |
|
38 |
def on_submit(text, mode):
|
39 |
print('{} mode'.format(mode))
|
|
|
33 |
|
34 |
path = "cc.en.300.vec"
|
35 |
# path = "cc.fr.300.vec"
|
36 |
+
m = KeyedVectors.load_word2vec_format(path, limit = 100000)
|
37 |
|
38 |
def on_submit(text, mode):
|
39 |
print('{} mode'.format(mode))
|