Zakia commited on
Commit
27bf8b4
1 Parent(s): eea661d

add the theme parameter

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -19,6 +19,7 @@ iface = gr.Interface(
19
  title=title,
20
  description=description,
21
  inputs=[gr.inputs.Number(default=None, label="Age"), gr.inputs.Dropdown(["Female", "Male"], default="Male"), gr.inputs.Dropdown(["Asian", "Black", "Coloured", "White", "Other"], default="Asian"), gr.inputs.Dropdown(["1", "2"], default="1")],
22
- outputs="text")
 
23
 
24
  iface.launch()
 
19
  title=title,
20
  description=description,
21
  inputs=[gr.inputs.Number(default=None, label="Age"), gr.inputs.Dropdown(["Female", "Male"], default="Male"), gr.inputs.Dropdown(["Asian", "Black", "Coloured", "White", "Other"], default="Asian"), gr.inputs.Dropdown(["1", "2"], default="1")],
22
+ outputs="text",
23
+ theme="darkdefault")
24
 
25
  iface.launch()