Update app.py
Browse files
app.py
CHANGED
@@ -26,7 +26,13 @@ def query_evidence(payload):
|
|
26 |
return response.json()
|
27 |
|
28 |
#-----------------------------------------------------------
|
29 |
-
st.title('Welcome to :blue[FACTIFY - 5WQA] ')
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
st.header('5W Aspect-based Fact Verification through Question Answering :blue[Web Demo]')
|
31 |
image = Image.open('5W QA Illustration.jpg')
|
32 |
st.image(image, caption='5W QA Generation Pipeline')
|
|
|
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 |
+
|
36 |
st.header('5W Aspect-based Fact Verification through Question Answering :blue[Web Demo]')
|
37 |
image = Image.open('5W QA Illustration.jpg')
|
38 |
st.image(image, caption='5W QA Generation Pipeline')
|