Update app.py
Browse files
app.py
CHANGED
@@ -31,7 +31,7 @@ with st.spinner("Loading Model..."):
|
|
31 |
model, base_model, tokenizer, data = load_model()
|
32 |
|
33 |
st.markdown("""<h1 style="text-align:center;">Fake News Detection AI</h1>""", unsafe_allow_html=True)
|
34 |
-
user_input = st.text_input(
|
35 |
b_left, b_center, b_right = st.columns([1,2,1])
|
36 |
with b_left:
|
37 |
st.write(" ")
|
|
|
31 |
model, base_model, tokenizer, data = load_model()
|
32 |
|
33 |
st.markdown("""<h1 style="text-align:center;">Fake News Detection AI</h1>""", unsafe_allow_html=True)
|
34 |
+
user_input = st.text_input("Article URL")
|
35 |
b_left, b_center, b_right = st.columns([1,2,1])
|
36 |
with b_left:
|
37 |
st.write(" ")
|