acidtib commited on
Commit
eb71cc4
1 Parent(s): 6957b22

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ def predict(input_img):
13
  gradio_app = gr.Interface(
14
  predict,
15
  inputs=gr.Image(label="Select Magic Card", sources=['upload', 'webcam'], type="pil"),
16
- outputs=[gr.Label(label="Result", num_top_classes=1), gr.Image(label="Processed Image")],
17
  examples=sample_img_paths,
18
  title="TCG Magic Classifier",
19
  description='This classifier returns the id of cards from scryfall!, try one of the samples below'
 
13
  gradio_app = gr.Interface(
14
  predict,
15
  inputs=gr.Image(label="Select Magic Card", sources=['upload', 'webcam'], type="pil"),
16
+ outputs=[gr.Image(label="Processed Image"), gr.Label(label="Result", num_top_classes=1)],
17
  examples=sample_img_paths,
18
  title="TCG Magic Classifier",
19
  description='This classifier returns the id of cards from scryfall!, try one of the samples below'