Update app.py
Browse files
app.py
CHANGED
|
@@ -26,17 +26,17 @@ def query_evidence(payload):
|
|
| 26 |
return response.json()
|
| 27 |
|
| 28 |
#-----------------------------------------------------------
|
| 29 |
-
|
| 30 |
|
| 31 |
-
st.set_page_config(
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
)
|
| 35 |
-
st.markdown("<center> <h2> 5W Aspect-based Fact Verification through Question Answering :blue[Web Demo]", unsafe_allow_html=True)
|
| 36 |
|
| 37 |
#st.markdown("<center>Ask a question about the collapse of the Silicon Valley Bank (SVB).</center>", unsafe_allow_html=True)
|
| 38 |
|
| 39 |
-
|
| 40 |
image = Image.open('5W QA Illustration.jpg')
|
| 41 |
st.image(image, caption='5W QA Generation Pipeline')
|
| 42 |
|
|
|
|
| 26 |
return response.json()
|
| 27 |
|
| 28 |
#-----------------------------------------------------------
|
| 29 |
+
st.title('Welcome to :blue[FACTIFY - 5WQA] ')
|
| 30 |
|
| 31 |
+
# st.set_page_config(
|
| 32 |
+
# page_title="Welcome to :blue[FACTIFY - 5WQA]",
|
| 33 |
+
# layout="wide"
|
| 34 |
+
# )
|
| 35 |
+
# st.markdown("<center> <h2> 5W Aspect-based Fact Verification through Question Answering :blue[Web Demo]", unsafe_allow_html=True)
|
| 36 |
|
| 37 |
#st.markdown("<center>Ask a question about the collapse of the Silicon Valley Bank (SVB).</center>", unsafe_allow_html=True)
|
| 38 |
|
| 39 |
+
st.header('5W Aspect-based Fact Verification through Question Answering :blue[Web Demo]')
|
| 40 |
image = Image.open('5W QA Illustration.jpg')
|
| 41 |
st.image(image, caption='5W QA Generation Pipeline')
|
| 42 |
|