Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -42,6 +42,13 @@ def create_downloadable_zip(augmented_images):
|
|
42 |
|
43 |
st.title("Ready-To-Use Synthetic Image Dataset Generation with Few-shots")
|
44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
uploaded_files = st.file_uploader("Choose images (1-10)", accept_multiple_files=True, type=["jpg", "jpeg", "png"])
|
46 |
augmentations_count = st.number_input("Number of augmented samples per image", min_value=1, max_value=10, value=3)
|
47 |
|
|
|
42 |
|
43 |
st.title("Ready-To-Use Synthetic Image Dataset Generation with Few-shots")
|
44 |
|
45 |
+
st.write("""
|
46 |
+
1. Easily prepare your dataset by uploading up to 10 images and specifying desired augmentations.
|
47 |
+
2. Utilize advanced image processing techniques to automatically generate multiple variations per image.
|
48 |
+
3. Reduce data preprocessing time with automated, customizable enhancements.
|
49 |
+
4. Quickly download your augmented images in a ZIP file for immediate use in your projects.
|
50 |
+
""")
|
51 |
+
|
52 |
uploaded_files = st.file_uploader("Choose images (1-10)", accept_multiple_files=True, type=["jpg", "jpeg", "png"])
|
53 |
augmentations_count = st.number_input("Number of augmented samples per image", min_value=1, max_value=10, value=3)
|
54 |
|