Spaces:
Build error
Build error
taskswithcode
commited on
Commit
•
515e4d1
1
Parent(s):
bb62200
Fixes
Browse files
app.py
CHANGED
@@ -60,7 +60,7 @@ def get_views(action):
|
|
60 |
|
61 |
def construct_model_info_for_display(model_names):
|
62 |
options_arr = []
|
63 |
-
markdown_str = f"<div style=\"font-size:16px; color: #2f2f2f; text-align: left\"><br/><b>Models evaluated ({len(model_names)})</b><br/><i>These are either state-of-the-art or the most downloaded models on
|
64 |
markdown_str += f"<div style=\"font-size:2px; color: #2f2f2f; text-align: left\"><br/></div>"
|
65 |
for node in model_names:
|
66 |
options_arr .append(node["name"])
|
@@ -231,8 +231,8 @@ def app_main(app_mode,example_files,model_name_files,clus_types):
|
|
231 |
selected_model = st.selectbox(label=selection_label,
|
232 |
options = options_arr, index=0, key = "twc_model")
|
233 |
st.write("")
|
234 |
-
custom_model_selection = st.text_input("Model not listed above? Type any
|
235 |
-
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
|
236 |
st.markdown(hf_link_str, unsafe_allow_html=True)
|
237 |
threshold = st.number_input('Choose a zscore threshold (number of std devs from mean)',value=st.session_state["threshold"],min_value = 0.0,step=.01)
|
238 |
st.write("")
|
|
|
60 |
|
61 |
def construct_model_info_for_display(model_names):
|
62 |
options_arr = []
|
63 |
+
markdown_str = f"<div style=\"font-size:16px; color: #2f2f2f; text-align: left\"><br/><b>Models evaluated ({len(model_names)})</b><br/><i>These are either state-of-the-art or the most downloaded models on Hugging Face</i></div>"
|
64 |
markdown_str += f"<div style=\"font-size:2px; color: #2f2f2f; text-align: left\"><br/></div>"
|
65 |
for node in model_names:
|
66 |
options_arr .append(node["name"])
|
|
|
231 |
selected_model = st.selectbox(label=selection_label,
|
232 |
options = options_arr, index=0, key = "twc_model")
|
233 |
st.write("")
|
234 |
+
custom_model_selection = st.text_input("Model not listed above? Type any Hugging Face sentence embedding model name ", "",key="custom_model")
|
235 |
+
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 Hugging Face sentence embedding models</a><br/><br/><br/></div>"
|
236 |
st.markdown(hf_link_str, unsafe_allow_html=True)
|
237 |
threshold = st.number_input('Choose a zscore threshold (number of std devs from mean)',value=st.session_state["threshold"],min_value = 0.0,step=.01)
|
238 |
st.write("")
|