gabrielcardoso21 commited on
Commit
3e3ab3b
1 Parent(s): 0e6795d

[FIX] app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ image = gr.inputs.Image(shape=(192, 192))
14
  label = gr.outputs.Label()
15
  examples = ['midjourney.jpg', 'dalle2.jpg']
16
 
17
- intf = gr.Interface(fn=classify_ai_art, input=image, outputs=label, examples=examples)
18
  intf.launch(inline=False)
19
 
20
 
 
14
  label = gr.outputs.Label()
15
  examples = ['midjourney.jpg', 'dalle2.jpg']
16
 
17
+ intf = gr.Interface(fn=classify_ai_art, inputs=image, outputs=label, examples=examples)
18
  intf.launch(inline=False)
19
 
20