hysts commited on
Commit
d9a1282
1 Parent(s): 67afb43
Files changed (1) hide show
  1. app.py +10 -2
app.py CHANGED
@@ -46,8 +46,16 @@ with gr.Blocks(css='style.css') as demo:
46
  ['shapes/nascar.obj', 'A next gen nascar', 2, 10],
47
  ]
48
  gr.Examples(examples=examples,
49
- inputs=[input_shape, text, seed, guidance_scale],
50
- outputs=[result, output_file],
 
 
 
 
 
 
 
 
51
  cache_examples=False)
52
 
53
  run_button.click(fn=model.run,
 
46
  ['shapes/nascar.obj', 'A next gen nascar', 2, 10],
47
  ]
48
  gr.Examples(examples=examples,
49
+ inputs=[
50
+ input_shape,
51
+ text,
52
+ seed,
53
+ guidance_scale,
54
+ ],
55
+ outputs=[
56
+ result,
57
+ output_file,
58
+ ],
59
  cache_examples=False)
60
 
61
  run_button.click(fn=model.run,