badrex commited on
Commit
9826d8b
·
verified ·
1 Parent(s): a43c401

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -3
src/streamlit_app.py CHANGED
@@ -298,7 +298,7 @@ def main():
298
  sentence_encoder = load_encoder(model_name)
299
 
300
  # Load metadata dictionary
301
- embedding_dict = load_dictionary('emoji_embeddings_dict.pkl')
302
 
303
  # git a list of emojis
304
  emojis = list(embedding_dict.keys())
@@ -321,8 +321,6 @@ def main():
321
  st.text(app_description)
322
 
323
 
324
-
325
-
326
  #query = st.text_input("Enter your search query", "")
327
 
328
  # Using columns to layout the input and button next to each other
 
298
  sentence_encoder = load_encoder(model_name)
299
 
300
  # Load metadata dictionary
301
+ embedding_dict = load_dictionary('/home/user/app/src/emoji_embeddings_dict.pkl')
302
 
303
  # git a list of emojis
304
  emojis = list(embedding_dict.keys())
 
321
  st.text(app_description)
322
 
323
 
 
 
324
  #query = st.text_input("Enter your search query", "")
325
 
326
  # Using columns to layout the input and button next to each other