Spaces:
Runtime error
Runtime error
taskswithcode
commited on
Commit
·
4277d83
1
Parent(s):
3c1c819
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>The selected models satisfy one or more of the following (1) state-of-the-art (2) 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"])
|
@@ -220,8 +220,8 @@ def app_main(app_mode,example_files,model_name_files):
|
|
220 |
selected_model = st.selectbox(label=selection_label,
|
221 |
options = options_arr, index=0, key = "twc_model")
|
222 |
st.write("")
|
223 |
-
custom_model_selection = st.text_input("Model not listed above? Type any
|
224 |
-
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
|
225 |
st.markdown(hf_link_str, unsafe_allow_html=True)
|
226 |
if (app_mode == SEM_SIMILARITY):
|
227 |
main_index = st.number_input('Enter index of sentence in file to make it the main sentence',value=1,min_value = 1)
|
|
|
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>The selected models satisfy one or more of the following (1) state-of-the-art (2) the most downloaded models on Hugging Face (3) Large Language Models (e.g. GPT-3)</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"])
|
|
|
220 |
selected_model = st.selectbox(label=selection_label,
|
221 |
options = options_arr, index=0, key = "twc_model")
|
222 |
st.write("")
|
223 |
+
custom_model_selection = st.text_input("Model not listed above? Type any Hugging Face sentence similarity model name ", "",key="custom_model")
|
224 |
+
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 similarity models</a><br/><br/><br/></div>"
|
225 |
st.markdown(hf_link_str, unsafe_allow_html=True)
|
226 |
if (app_mode == SEM_SIMILARITY):
|
227 |
main_index = st.number_input('Enter index of sentence in file to make it the main sentence',value=1,min_value = 1)
|