noumanjavaid commited on
Commit
54544c4
1 Parent(s): 26069e1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -607,7 +607,15 @@ def process_image(image_bytes):
607
 
608
  def main():
609
  st.title("Deepfake Detection")
610
- st.write("Upload an image to detect potential deepfakes")
 
 
 
 
 
 
 
 
611
 
612
  uploaded_file = st.file_uploader("Choose an image...", type=["jpg", "jpeg", "png"])
613
 
 
607
 
608
  def main():
609
  st.title("Deepfake Detection")
610
+ st.markdown("""
611
+ <div style="background-color: #f9f9f9; padding: 10px; border-radius: 5px; border: 1px solid #ddd;">
612
+ <h3 style="color: #ff6347;">NOTE:</h3>
613
+ <p style="font-size: 14px; color: #333;">
614
+ In case there would be no changes detected, the space would not show anything as a result, returning back empty results. For this POC.
615
+ </p>
616
+ </div>
617
+ """, unsafe_allow_html=True)
618
+
619
 
620
  uploaded_file = st.file_uploader("Choose an image...", type=["jpg", "jpeg", "png"])
621