nostalgebraist commited on
Commit
693beab
·
1 Parent(s): 1b3b3ce

stop button

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -77,6 +77,7 @@ def handler(text, ts1, ts2, gs1):
77
 
78
  return pipeline.sample(**args)
79
 
 
80
 
81
  text = st.text_area('Enter your text here (or leave blank for a textless image)', max_chars=380)
82
 
@@ -89,7 +90,10 @@ ts2 = st.slider('Steps (upsampling)', min_value=5, max_value=500, value=10, help
89
  gs1 = st.select_slider('Guidance scale (base)', [0.5*i for i in range(9)], value=0., help=help_gs1)
90
 
91
 
92
- if st.button('Generate'):
 
 
 
93
  low_res = st.empty()
94
  high_res = st.empty()
95
 
@@ -128,3 +132,6 @@ if st.button('Generate'):
128
  with target.container():
129
  st.image([s, xs])
130
  st.write(f'{count} / {total} | {rate:.2f} seconds/frame')
 
 
 
 
77
 
78
  return pipeline.sample(**args)
79
 
80
+ st.title('nostalgebraist-autoresponder image generation demo')
81
 
82
  text = st.text_area('Enter your text here (or leave blank for a textless image)', max_chars=380)
83
 
 
90
  gs1 = st.select_slider('Guidance scale (base)', [0.5*i for i in range(9)], value=0., help=help_gs1)
91
 
92
 
93
+ button_go = st.button('Generate')
94
+ button_stop = st.button('Stop')
95
+
96
+ if button_go:
97
  low_res = st.empty()
98
  high_res = st.empty()
99
 
 
132
  with target.container():
133
  st.image([s, xs])
134
  st.write(f'{count} / {total} | {rate:.2f} seconds/frame')
135
+
136
+ if button_stop:
137
+ break