RamAnanth1 commited on
Commit
777ee0f
1 Parent(s): 23384be

Fix input ordering for example

Browse files
Files changed (1) hide show
  1. gradio_pose.py +2 -2
gradio_pose.py CHANGED
@@ -22,9 +22,9 @@ def create_demo(process):
22
 
23
  examples_list = [["iron.png", "iron man, cyberpunk",
24
  "ugly, tiling, poorly drawn hands, poorly drawn feet, poorly drawn face, out of frame, extra limbs, disfigured, deformed, body out of frame, bad anatomy, watermark, signature, cut off, low contrast, underexposed, overexposed, bad art, beginner, amateur, distorted face",
25
- 0.4,
26
  7.5,
27
- 'True',
28
  'sd-v1-4.ckpt']]
29
 
30
  examples = gr.Examples(examples=examples_list,inputs = [input_img, prompt,neg_prompt, fix_sample, scale, con_strength,base_model], outputs = [result], cache_examples = True, fn = process)
 
22
 
23
  examples_list = [["iron.png", "iron man, cyberpunk",
24
  "ugly, tiling, poorly drawn hands, poorly drawn feet, poorly drawn face, out of frame, extra limbs, disfigured, deformed, body out of frame, bad anatomy, watermark, signature, cut off, low contrast, underexposed, overexposed, bad art, beginner, amateur, distorted face",
25
+ 'True',
26
  7.5,
27
+ 0.4,
28
  'sd-v1-4.ckpt']]
29
 
30
  examples = gr.Examples(examples=examples_list,inputs = [input_img, prompt,neg_prompt, fix_sample, scale, con_strength,base_model], outputs = [result], cache_examples = True, fn = process)