We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f38b28c commit 88176ceCopy full SHA for 88176ce
src/main.py
@@ -33,7 +33,7 @@ def fetch_today_info(): # Set seed to current day in order to generate same wor
33
random.seed(app.current_day)
34
35
# Fetch info
36
- app.puzzle_number = random.randint(0, 5000) # Only fetch words from the first 5000 to avoid obscure words
+ app.puzzle_number = random.randint(0, 3000) # Only fetch words from the first 3000 to avoid obscure words
37
app.current_word = model.index_to_key[app.puzzle_number]
38
app.top_1000 = model.most_similar(app.current_word, topn=1000)
39
app.top_1000_words = list(map(lambda x: x[0], app.top_1000))
0 commit comments