sivakornchong commited on
Commit
a9586db
1 Parent(s): 6dec054
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -5,10 +5,10 @@ from main import main_fn
5
  iface = gr.Interface(
6
  fn=main_fn,
7
  inputs= [
8
- gr.inputs.Textbox(type="text", label='Name'),
9
  ],
10
  outputs= [
11
- gr.outputs.Textbox(type="text", label='Gender')
12
  gr.outputs.Number(label = 'Percentage confidence')
13
  ]
14
  )
 
5
  iface = gr.Interface(
6
  fn=main_fn,
7
  inputs= [
8
+ gr.inputs.Textbox(type="text", label='Name')
9
  ],
10
  outputs= [
11
+ gr.outputs.Textbox(type="text", label='Gender'),
12
  gr.outputs.Number(label = 'Percentage confidence')
13
  ]
14
  )