sgbaird commited on
Commit
5e2fc9d
1 Parent(s): 21fece8

default branin value

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,6 +18,6 @@ iface = gr.Interface(
18
  gr.Number(0.25, label="x1", minimum=0.0, maximum=1.0),
19
  gr.Number(0.75, label="x2", minimum=0.0, maximum=1.0),
20
  ],
21
- outputs=gr.Number(label="branin function value"),
22
  )
23
  iface.launch()
 
18
  gr.Number(0.25, label="x1", minimum=0.0, maximum=1.0),
19
  gr.Number(0.75, label="x2", minimum=0.0, maximum=1.0),
20
  ],
21
+ outputs=gr.Number(branin(0.25, 0.75), label="branin function value"),
22
  )
23
  iface.launch()