Allob commited on
Commit
78dfe4e
·
1 Parent(s): 0b6790a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
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'] = []