LiuZichen commited on
Commit
6a3f985
·
verified ·
1 Parent(s): f8017a9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -220,6 +220,13 @@ with gr.Blocks(css=css, head=head) as demo:
220
  btn = gr.Button("Run", variant="primary")
221
  with gr.Column():
222
  with gr.Accordion("parameters", open=False):
 
 
 
 
 
 
 
223
  negative_prompt = gr.Textbox(
224
  label="Negative Prompt",
225
  value="",
 
220
  btn = gr.Button("Run", variant="primary")
221
  with gr.Column():
222
  with gr.Accordion("parameters", open=False):
223
+ ckpt_value = os.path.join('SD1.5', 'realisticVisionV60B1_v51VAE.safetensors')
224
+ ckpt_name = gr.Dropdown(
225
+ label="Base Model (fixed for demo)",
226
+ choices=[ckpt_value],
227
+ value=ckpt_value,
228
+ interactive=False
229
+ )
230
  negative_prompt = gr.Textbox(
231
  label="Negative Prompt",
232
  value="",