Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -48,7 +48,11 @@ st.title("Fake Detection")
|
|
| 48 |
st.divider()
|
| 49 |
|
| 50 |
crop = st.toggle("Activate random crop")
|
|
|
|
|
|
|
| 51 |
compress = st.toggle("Activate jpeg compression")
|
|
|
|
|
|
|
| 52 |
st.divider()
|
| 53 |
|
| 54 |
binary = st.toggle("Activate binary classification")
|
|
|
|
| 48 |
st.divider()
|
| 49 |
|
| 50 |
crop = st.toggle("Activate random crop")
|
| 51 |
+
if crop:
|
| 52 |
+
st.write("random crop activated!")
|
| 53 |
compress = st.toggle("Activate jpeg compression")
|
| 54 |
+
if crop:
|
| 55 |
+
st.write("jpeg compression activated!")
|
| 56 |
st.divider()
|
| 57 |
|
| 58 |
binary = st.toggle("Activate binary classification")
|