Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -541,13 +541,13 @@ def nvidia_deepfake_detection_app():
|
|
541 |
if uploaded_file is not None:
|
542 |
image_bytes = uploaded_file.getvalue()
|
543 |
image = Image.open(BytesIO(image_bytes))
|
544 |
-
st.image(image, caption="Uploaded Image",
|
545 |
|
546 |
col1, col2 = st.columns([2, 1])
|
547 |
|
548 |
with col1:
|
549 |
# Display original image
|
550 |
-
st.image(image, caption="Uploaded Image",
|
551 |
|
552 |
with col2:
|
553 |
# Placeholder for detection results
|
|
|
541 |
if uploaded_file is not None:
|
542 |
image_bytes = uploaded_file.getvalue()
|
543 |
image = Image.open(BytesIO(image_bytes))
|
544 |
+
st.image(image, caption="Uploaded Image", use_container_width=True)
|
545 |
|
546 |
col1, col2 = st.columns([2, 1])
|
547 |
|
548 |
with col1:
|
549 |
# Display original image
|
550 |
+
st.image(image, caption="Uploaded Image", use_container_width=True)
|
551 |
|
552 |
with col2:
|
553 |
# Placeholder for detection results
|