Spaces:
Runtime error
Runtime error
Trent
commited on
Commit
·
7e55908
1
Parent(s):
a41bdbc
Default value for model selection + new model
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ anchor = st.text_input(
|
|
26 |
)
|
27 |
|
28 |
if anchor:
|
29 |
-
select_models = st.sidebar.multiselect("Choose models", options=MODELS_ID.keys())
|
30 |
n_texts = st.sidebar.number_input(
|
31 |
f'''How many texts you want to compare with: '{anchor}'?''',
|
32 |
value=2,
|
|
|
26 |
)
|
27 |
|
28 |
if anchor:
|
29 |
+
select_models = st.sidebar.multiselect("Choose models", options=MODELS_ID.keys(), default=MODELS_ID.keys()[0])
|
30 |
n_texts = st.sidebar.number_input(
|
31 |
f'''How many texts you want to compare with: '{anchor}'?''',
|
32 |
value=2,
|