nedcpr commited on
Commit
d44431a
1 Parent(s): bdc7a99

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ label = gr.outputs.Label()
15
  title = "Sign Language Digit Classifier"
16
  description = "A sign language digit classifier trained on a Kaggle dataset with fastai. Created as a demo for fast.ai Part 1 v5 (2022)."
17
  interpretation='default'
18
- examples="IMG_4590.JPG", "IMG_4883.JPG", "IMG_5495.JPG"
19
  enable_queue=True
20
 
21
  gr.Interface(fn=classify_image,inputs=gr.inputs.Image(shape=(100, 100)),outputs=gr.outputs.Label(num_top_classes=3),title=title,description=description,examples=examples).launch()
 
15
  title = "Sign Language Digit Classifier"
16
  description = "A sign language digit classifier trained on a Kaggle dataset with fastai. Created as a demo for fast.ai Part 1 v5 (2022)."
17
  interpretation='default'
18
+ examples= ['IMG_4590.JPG', 'IMG_4883.JPG', 'IMG_5495.JPG']
19
  enable_queue=True
20
 
21
  gr.Interface(fn=classify_image,inputs=gr.inputs.Image(shape=(100, 100)),outputs=gr.outputs.Label(num_top_classes=3),title=title,description=description,examples=examples).launch()