Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,7 +4,7 @@ from PIL import Image
|
|
| 4 |
|
| 5 |
pipeline = pipeline(task="image-classification", model="umm-maybe/AI-image-detector")
|
| 6 |
st.title("AI Image Detector")
|
| 7 |
-
file_name = st.file_uploader("Upload a
|
| 8 |
if file_name is not None:
|
| 9 |
col1, col2 = st.columns(2)
|
| 10 |
image = Image.open(file_name)
|
|
|
|
| 4 |
|
| 5 |
pipeline = pipeline(task="image-classification", model="umm-maybe/AI-image-detector")
|
| 6 |
st.title("AI Image Detector")
|
| 7 |
+
file_name = st.file_uploader("Upload a picture. Let's find out if it was made by AI!")
|
| 8 |
if file_name is not None:
|
| 9 |
col1, col2 = st.columns(2)
|
| 10 |
image = Image.open(file_name)
|