Update app.py
Browse files
app.py
CHANGED
@@ -26,6 +26,8 @@ def predict_image(image):
|
|
26 |
return 'Real'
|
27 |
|
28 |
# Streamlit app interface
|
|
|
|
|
29 |
st.title('Real or Fake Image Classifier')
|
30 |
|
31 |
st.write("""
|
|
|
26 |
return 'Real'
|
27 |
|
28 |
# Streamlit app interface
|
29 |
+
with open("style.css") as f:
|
30 |
+
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
|
31 |
st.title('Real or Fake Image Classifier')
|
32 |
|
33 |
st.write("""
|