Spaces:
Runtime error
Runtime error
Commit
·
b9185c9
1
Parent(s):
9ecaf13
testing Q&A models
Browse files
app.py
CHANGED
|
@@ -17,8 +17,8 @@ st.header("Do It!!!! Ask the Question.....")
|
|
| 17 |
|
| 18 |
col1,col2=st.columns([5,3])
|
| 19 |
|
| 20 |
-
question=col1.
|
| 21 |
-
model_name=col2.selectbox("Model Name",options=["google/flan-t5-large","gpt2-medium","EleutherAI/gpt-neo-125m"])
|
| 22 |
|
| 23 |
submit=st.button("Submit")
|
| 24 |
|
|
|
|
| 17 |
|
| 18 |
col1,col2=st.columns([5,3])
|
| 19 |
|
| 20 |
+
question=col1.text_area("Question:")
|
| 21 |
+
model_name=col2.selectbox("Model Name",options=["google/flan-t5-large","deepset/roberta-base-squad2","AmazonScience/qanlu","gpt2-medium","EleutherAI/gpt-neo-125m"])
|
| 22 |
|
| 23 |
submit=st.button("Submit")
|
| 24 |
|