taufiqdp commited on
Commit
1681aee
1 Parent(s): 71645d8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -51,8 +51,8 @@ example_list = [[str(filepath)] for filepath in random.sample(example_paths, k=6
51
 
52
 
53
  title = 'Birds Species Classifier 🐦'
54
- description = 'A [ShuffleNetV2](https://pytorch.org/vision/main/models/shufflenetv2.html) feature extractor computer vision model to classify images of [525 species birds](https://www.kaggle.com/datasets/gpiosenka/100-bird-species/).'
55
-
56
 
57
  demo = gr.Interface(
58
  fn=predict,
@@ -62,7 +62,8 @@ demo = gr.Interface(
62
  description=description,
63
  title=title,
64
  allow_flagging='never',
65
- examples=example_list
 
66
  )
67
 
68
  demo.launch(debug=False)
 
51
 
52
 
53
  title = 'Birds Species Classifier 🐦'
54
+ description = 'A [ShuffleNetV2](https://pytorch.org/vision/main/models/shufflenetv2.html) feature extractor computer vision model to classify images of [525 bird species](https://www.kaggle.com/datasets/gpiosenka/100-bird-species/).'
55
+ article = 'Made with ❤️🤗 by [me](https://www.linkedin.com/in/taufiq-dwi-purnomo/).'
56
 
57
  demo = gr.Interface(
58
  fn=predict,
 
62
  description=description,
63
  title=title,
64
  allow_flagging='never',
65
+ examples=example_list,
66
+ article=article
67
  )
68
 
69
  demo.launch(debug=False)