Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -129,7 +129,7 @@ if st.button("Retrieve your answer"):
|
|
129 |
with st.spinner("Wait for it...", show_time=True):
|
130 |
time.sleep(5)
|
131 |
if df_original is not None:
|
132 |
-
tqa = pipeline(task="table-question-answering", model="microsoft/tapex-
|
133 |
st.write(tqa(table=df_original, query=question)['answer'])
|
134 |
|
135 |
st.divider()
|
|
|
129 |
with st.spinner("Wait for it...", show_time=True):
|
130 |
time.sleep(5)
|
131 |
if df_original is not None:
|
132 |
+
tqa = pipeline(task="table-question-answering", model="microsoft/tapex-base")
|
133 |
st.write(tqa(table=df_original, query=question)['answer'])
|
134 |
|
135 |
st.divider()
|