Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -37,6 +37,8 @@ model = load_model()
|
|
| 37 |
secret_word = random.choice(all_words)
|
| 38 |
secret_embedding = model.encode(secret_word)
|
| 39 |
|
|
|
|
|
|
|
| 40 |
|
| 41 |
if 'words' not in st.session_state:
|
| 42 |
st.session_state['words'] = []
|
|
|
|
| 37 |
secret_word = random.choice(all_words)
|
| 38 |
secret_embedding = model.encode(secret_word)
|
| 39 |
|
| 40 |
+
logging.info("Secret word", secret_word)
|
| 41 |
+
|
| 42 |
|
| 43 |
if 'words' not in st.session_state:
|
| 44 |
st.session_state['words'] = []
|