wg25r
commited on
Commit
·
26eb13f
1
Parent(s):
b2ed8f3
add warning message
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ gen_strategy = col1.selectbox("Select a generative strategy", ("Beam Search", "S
|
|
23 |
temp = col2.slider("Temperature", 0.0, 2.0, 1.0)
|
24 |
uploaded_file = st.file_uploader("Upload an image", type=["png", "jpg", "jpeg", "webp", "heic"])
|
25 |
col1, col2 = st.columns(2)
|
26 |
-
col1.checkbox("
|
27 |
button = col2.button("Submit")
|
28 |
if button:
|
29 |
if uploaded_file:
|
|
|
23 |
temp = col2.slider("Temperature", 0.0, 2.0, 1.0)
|
24 |
uploaded_file = st.file_uploader("Upload an image", type=["png", "jpg", "jpeg", "webp", "heic"])
|
25 |
col1, col2 = st.columns(2)
|
26 |
+
col1.checkbox("Contribute To Public Dataset", value=True, help="If checked, images will be included in a PUBLIC dataset, and the image will be reviewed by our team and used for model training. When checked, do not upload any sensitive or personal data.")
|
27 |
button = col2.button("Submit")
|
28 |
if button:
|
29 |
if uploaded_file:
|