Spaces:
Runtime error
Runtime error
Commit
·
a8b6fbb
1
Parent(s):
10a994a
Update app.py
Browse files
app.py
CHANGED
|
@@ -73,9 +73,9 @@ def main():
|
|
| 73 |
prompt = st.text_input(
|
| 74 |
label="Write prompt to generate your unique BAYC image! (e.g. An ape with golden fur)")
|
| 75 |
|
| 76 |
-
num_images = st.number_input(label="Number of images to generate")
|
| 77 |
|
| 78 |
-
seed = st.number_input(label="Seed for images")
|
| 79 |
|
| 80 |
submitted = st.form_submit_button(label="Submit")
|
| 81 |
|
|
|
|
| 73 |
prompt = st.text_input(
|
| 74 |
label="Write prompt to generate your unique BAYC image! (e.g. An ape with golden fur)")
|
| 75 |
|
| 76 |
+
num_images = st.number_input(label="Number of images to generate", value=int)
|
| 77 |
|
| 78 |
+
seed = st.number_input(label="Seed for images", value=int)
|
| 79 |
|
| 80 |
submitted = st.form_submit_button(label="Submit")
|
| 81 |
|