ikoghoemmanuell
commited on
Commit
•
3cad95c
1
Parent(s):
03ab018
Update app.py
Browse files
app.py
CHANGED
@@ -64,18 +64,6 @@ if choice == 'Home':
|
|
64 |
with st.spinner('Checking if news is Fake...'):
|
65 |
st.warning("Please enter some text to detect fake news.")
|
66 |
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
# Setting the page configurations
|
80 |
st.set_page_config(page_title="Fake News Detection App", page_icon="fas fa-exclamation-triangle", layout="wide", initial_sidebar_state="auto")
|
81 |
|
@@ -100,16 +88,16 @@ elif choice == 'About':
|
|
100 |
banner_image_url = "https://raw.githubusercontent.com/Gilbert-B/Forecasting-Sales/0d7b869515bniVmJZZxhyQ8Fee6m6SCLi64M8Ba72c/app/seer.png"
|
101 |
banner_image = Image.open(requests.get(banner_image_url, stream=True).raw)
|
102 |
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
|
|
64 |
with st.spinner('Checking if news is Fake...'):
|
65 |
st.warning("Please enter some text to detect fake news.")
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
# Setting the page configurations
|
68 |
st.set_page_config(page_title="Fake News Detection App", page_icon="fas fa-exclamation-triangle", layout="wide", initial_sidebar_state="auto")
|
69 |
|
|
|
88 |
banner_image_url = "https://raw.githubusercontent.com/Gilbert-B/Forecasting-Sales/0d7b869515bniVmJZZxhyQ8Fee6m6SCLi64M8Ba72c/app/seer.png"
|
89 |
banner_image = Image.open(requests.get(banner_image_url, stream=True).raw)
|
90 |
|
91 |
+
# Display the banner image
|
92 |
+
st.image(banner_image, use_column_width=True)
|
93 |
+
st.markdown('''
|
94 |
+
<p style='font-size: 20px; font-style: italic;font-style: bold;'>
|
95 |
+
TRUTH is a cutting-edge application specifically designed to combat the spread of fake news.
|
96 |
+
Using state-of-the-art algorithms and advanced deep learning techniques,
|
97 |
+
our app empowers users to detect and verify the authenticity of news articles.
|
98 |
+
TRUTH provides accurate assessments of the reliability of news content.
|
99 |
+
With its user-friendly interface and intuitive design,
|
100 |
+
the app enables users to easily navigate and obtain trustworthy information in real-time.
|
101 |
+
With TRUTH, you can take control of the news you consume and make informed decisions based on verified facts.
|
102 |
+
</p>
|
103 |
+
''', unsafe_allow_html=True)
|