SunderAli17 commited on
Commit
9107574
·
verified ·
1 Parent(s): bd48de8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -7
app.py CHANGED
@@ -56,6 +56,13 @@ def run(*args):
56
 
57
  return ims, pipeline.debug_img_list
58
 
 
 
 
 
 
 
 
59
 
60
  _MARKDOWN_ = """
61
  <h2><b>This is the demo for DyCA-HiFi for Image to Identity Customization</b></h2>
@@ -211,15 +218,15 @@ with gr.Blocks(title="DyCA-HiFi", theme = "Yntec/HaleyCH_Theme_Orange") as SAK:
211
  supp_image1,
212
  prompt,
213
  neg_prompt,
214
- id_scale = 0.8,
215
  mode,
216
  id_mix,
217
- steps = 4,
218
- seed = 42,
219
- n_samples = 2,
220
- scale = 1.2,
221
- H = 1024,
222
- W = 768
223
  ]
224
  submit.click(fn=run, inputs=inps, outputs=[output, intermediate_output])
225
 
 
56
 
57
  return ims, pipeline.debug_img_list
58
 
59
+ id_scale = 0.8,
60
+ steps = 4,
61
+ seed = 42,
62
+ n_samples = 2,
63
+ scale = 1.2,
64
+ H = 1024,
65
+ W = 768
66
 
67
  _MARKDOWN_ = """
68
  <h2><b>This is the demo for DyCA-HiFi for Image to Identity Customization</b></h2>
 
218
  supp_image1,
219
  prompt,
220
  neg_prompt,
221
+ id_scale,
222
  mode,
223
  id_mix,
224
+ steps,
225
+ seed,
226
+ n_samples,
227
+ scale,
228
+ H,
229
+ W
230
  ]
231
  submit.click(fn=run, inputs=inps, outputs=[output, intermediate_output])
232