Spaces:
Runtime error
Runtime error
Commit
·
02f0f1d
1
Parent(s):
6a49dc6
Changes
Browse files
app.py
CHANGED
@@ -35,17 +35,14 @@ app = Flask(__name__)
|
|
35 |
# @app.route("/", methods=["POST"])
|
36 |
def generate():
|
37 |
|
38 |
-
|
39 |
-
|
40 |
-
|
|
|
41 |
|
42 |
-
|
43 |
-
negative_prompt = st.text_area(label = "Negative prompt", key="ng_pmpt")
|
44 |
-
num_samples = st.number_input("No. of samples")
|
45 |
|
46 |
-
|
47 |
-
|
48 |
-
if res:
|
49 |
|
50 |
guidance_scale = 7.5
|
51 |
num_inference_steps = 24
|
|
|
35 |
# @app.route("/", methods=["POST"])
|
36 |
def generate():
|
37 |
|
38 |
+
with st.form(key="Form :", clear_on_submit = True):
|
39 |
+
prompt = st.text_area(label = "prompt", key="pmpt")
|
40 |
+
negative_prompt = st.text_area(label = "Negative prompt", key="ng_pmpt")
|
41 |
+
num_samples = st.number_input("No. of samples", step=1)
|
42 |
|
43 |
+
Submit = st.form_submit_button(label='Submit')
|
|
|
|
|
44 |
|
45 |
+
if Submit:
|
|
|
|
|
46 |
|
47 |
guidance_scale = 7.5
|
48 |
num_inference_steps = 24
|