mawairon commited on
Commit
99d9c5e
1 Parent(s): 5dca1cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -194,7 +194,10 @@ demo = gr.Interface(
194
  "CNN"
195
  ])
196
  ],
197
- outputs=["json", html_output]
 
 
 
198
  )
199
 
200
  # Launch the interface
 
194
  "CNN"
195
  ])
196
  ],
197
+ outputs=[
198
+ gr.JSON(), # Properly instantiate the JSON output component
199
+ gr.HTML() # Properly instantiate the HTML output component
200
+ ]
201
  )
202
 
203
  # Launch the interface