chansung commited on
Commit
849c56b
·
1 Parent(s): 661dabd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -2
app.py CHANGED
@@ -160,6 +160,7 @@ with gr.Blocks() as demo2:
160
  gr.Markdown(
161
  """
162
  ## Deploy Stable Diffusion on 🤗 Endpoint
 
163
  """)
164
 
165
  gr.Markdown("""
@@ -179,19 +180,28 @@ with gr.Blocks() as demo2:
179
 
180
  providers = avaliable_providers()
181
  head_sha = "2a520e132597a810e396ca28805d98ce56ec3544"
 
 
 
 
 
 
 
 
 
182
 
183
  with gr.Row():
184
  provider_selector = gr.Dropdown(
185
  choices=providers,
186
- label="select cloud provider",
187
  interactive=True,
 
188
  )
189
 
190
  region_selector = gr.Dropdown(
191
  [],
192
  value="",
193
  interactive=True,
194
- label="select a region"
195
  )
196
 
197
  provider_selector.change(update_regions, inputs=provider_selector, outputs=region_selector)
 
160
  gr.Markdown(
161
  """
162
  ## Deploy Stable Diffusion on 🤗 Endpoint
163
+ ---
164
  """)
165
 
166
  gr.Markdown("""
 
180
 
181
  providers = avaliable_providers()
182
  head_sha = "2a520e132597a810e396ca28805d98ce56ec3544"
183
+
184
+ with gr.Row():
185
+ gr.Markdown("""
186
+ #### Select Cloud Provider
187
+ """)
188
+
189
+ gr.Markdown("""
190
+ #### Select Cloud Region
191
+ """)
192
 
193
  with gr.Row():
194
  provider_selector = gr.Dropdown(
195
  choices=providers,
 
196
  interactive=True,
197
+ show_label=False,
198
  )
199
 
200
  region_selector = gr.Dropdown(
201
  [],
202
  value="",
203
  interactive=True,
204
+ show_label=False,
205
  )
206
 
207
  provider_selector.change(update_regions, inputs=provider_selector, outputs=region_selector)