Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,12 @@
|
|
1 |
import streamlit as st
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
# List of sentences
|
4 |
sentence1 = [f"U.S. President Barack Obama declared that the U.S. will refrain from deploying troops in Ukraine."]
|
5 |
sentence2 = [f"Joe Biden said we’d not send U.S. troops to fight Russian troops in Ukraine, but we would provide robust military assistance and try to unify the Western world against Russia’s aggression."]
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
st.set_page_config(page_title="FACTOID: FACtual enTailment fOr hallucInation Detection", layout="wide")
|
4 |
+
st.title('Welcome to :blue[FACTOID] ')
|
5 |
+
|
6 |
+
st.header('FACTOID: FACtual enTailment fOr hallucInation Detection :blue[Web Demo]')
|
7 |
+
image = Image.open('image.png')
|
8 |
+
st.image(image, caption='Traditional Entailment vs Factual Entailment')
|
9 |
+
|
10 |
# List of sentences
|
11 |
sentence1 = [f"U.S. President Barack Obama declared that the U.S. will refrain from deploying troops in Ukraine."]
|
12 |
sentence2 = [f"Joe Biden said we’d not send U.S. troops to fight Russian troops in Ukraine, but we would provide robust military assistance and try to unify the Western world against Russia’s aggression."]
|