georgescutelnicu commited on
Commit
905e329
β€’
1 Parent(s): 119806c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -78,6 +78,7 @@ example_list = [['examples/1.jpg'],
78
 
79
  title = "License plate reader 🚌"
80
  description = "[Trained on european car plates] Identifies the license plate, cuts and displays it, and converts it into text. An image with higher resolution and clearer license plate will have a better accuracy."
 
81
 
82
  demo = gr.Interface(fn=predict,
83
  inputs='image',
@@ -85,7 +86,8 @@ demo = gr.Interface(fn=predict,
85
  gr.Label(label="Prediction - Confidence score")],
86
  examples=example_list,
87
  title=title,
88
- description=description)
 
89
 
90
 
91
  demo.launch(debug=False,
 
78
 
79
  title = "License plate reader 🚌"
80
  description = "[Trained on european car plates] Identifies the license plate, cuts and displays it, and converts it into text. An image with higher resolution and clearer license plate will have a better accuracy."
81
+ article = "See the code on [GitHub](https://github.com/georgescutelnicu/License-Plate-Reader)."
82
 
83
  demo = gr.Interface(fn=predict,
84
  inputs='image',
 
86
  gr.Label(label="Prediction - Confidence score")],
87
  examples=example_list,
88
  title=title,
89
+ description=description,
90
+ article=article)
91
 
92
 
93
  demo.launch(debug=False,