taskswithcode commited on
Commit
e4cf805
1 Parent(s): 889fe1c
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -228,8 +228,8 @@ def app_main(app_mode,example_files,model_name_files):
228
  selected_model = st.selectbox(label=selection_label,
229
  options = options_arr, index=0, key = "twc_model")
230
  st.write("")
231
- custom_model_selection = st.text_input("Model not listed above? Type any Huggingface semantic search model name ", "",key="custom_model")
232
- hf_link_str = "<div style=\"font-size:12px; color: #9f9f9f; text-align: left\"><a href='https://huggingface.co/models?pipeline_tag=sentence-similarity' target = '_blank'>List of Huggingface semantic search models</a><br/><br/><br/></div>"
233
  st.markdown(hf_link_str, unsafe_allow_html=True)
234
  threshold = st.number_input('Step 3. Choose a zscore threshold (number of std devs from mean)',value=st.session_state["threshold"],min_value = 0.0,step=.01)
235
  st.write("")
 
228
  selected_model = st.selectbox(label=selection_label,
229
  options = options_arr, index=0, key = "twc_model")
230
  st.write("")
231
+ custom_model_selection = st.text_input("Model not listed above? Type any Huggingface sentence embedding model name ", "",key="custom_model")
232
+ hf_link_str = "<div style=\"font-size:12px; color: #9f9f9f; text-align: left\"><a href='https://huggingface.co/models?pipeline_tag=sentence-similarity' target = '_blank'>List of Huggingface sentence embedding models</a><br/><br/><br/></div>"
233
  st.markdown(hf_link_str, unsafe_allow_html=True)
234
  threshold = st.number_input('Step 3. Choose a zscore threshold (number of std devs from mean)',value=st.session_state["threshold"],min_value = 0.0,step=.01)
235
  st.write("")