Spaces:
Sleeping
Sleeping
LucasAguetai
commited on
Commit
·
73a1a59
1
Parent(s):
5b4d076
change deberta to squeezebert
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ context = None
|
|
10 |
|
11 |
with st.sidebar:
|
12 |
model = st.selectbox('which model would you like to use',
|
13 |
-
('
|
14 |
contextSelect = st.radio("Pick a context mode:", ["Text", "File"])
|
15 |
if contextSelect == "File":
|
16 |
userContext = st.file_uploader("Pick a file for the context", accept_multiple_files=True)
|
|
|
10 |
|
11 |
with st.sidebar:
|
12 |
model = st.selectbox('which model would you like to use',
|
13 |
+
('SqueezeBERT', 'BERT', 'DeBERTa-v2'))
|
14 |
contextSelect = st.radio("Pick a context mode:", ["Text", "File"])
|
15 |
if contextSelect == "File":
|
16 |
userContext = st.file_uploader("Pick a file for the context", accept_multiple_files=True)
|