From 4bbae0d5a4123c4cef5db490d19ede7eabde0fae Mon Sep 17 00:00:00 2001 From: "Yubing Dong (Tom)" Date: Mon, 9 Oct 2017 20:06:02 -0700 Subject: [PATCH] Fix typo in the FastText example --- example/tutorial_imdb_fasttext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/tutorial_imdb_fasttext.py b/example/tutorial_imdb_fasttext.py index 250c1cb5c..21a8181ba 100644 --- a/example/tutorial_imdb_fasttext.py +++ b/example/tutorial_imdb_fasttext.py @@ -40,7 +40,7 @@ # in addition to unigrams. N_GRAM = 2 -# Size of vocabulary; less frequent works will be treated as "unknown" +# Size of vocabulary; less frequent words will be treated as "unknown" VOCAB_SIZE = 100000 # Number of buckets used for hashing n-grams