ldkong commited on
Commit
9341c21
·
1 Parent(s): d2bf1cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -10
app.py CHANGED
@@ -16,18 +16,9 @@ def sampler(body, bottomwear, hair, topwear):
16
 
17
 
18
  demo = gr.Interface(
19
- calculator,
20
- ["number", gr.Radio(["add", "subtract", "multiply", "divide"]), "number"],
21
- "number",
22
- live=True,
23
- )
24
-
25
- demo.launch()
26
-
27
- demo2 = gr.Interface(
28
  sampler,
29
  [gr.Radio(["body", "bottomwear", "hair", "topwear"])],
30
  live=True,
31
  )
32
 
33
- demo2.launch()
 
16
 
17
 
18
  demo = gr.Interface(
 
 
 
 
 
 
 
 
 
19
  sampler,
20
  [gr.Radio(["body", "bottomwear", "hair", "topwear"])],
21
  live=True,
22
  )
23
 
24
+ demo.launch()