Spaces:
Runtime error
Runtime error
hamdanhh07
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
import gradio as gr
|
2 |
-
example_list = [['examples/
|
3 |
-
['examples/
|
4 |
-
['examples/
|
5 |
-
['examples/
|
6 |
-
['examples/
|
7 |
-
['examples/
|
8 |
|
9 |
title = "License plate reader π"
|
10 |
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."
|
11 |
|
12 |
-
gr.Interface.load("models/
|
13 |
|
|
|
1 |
import gradio as gr
|
2 |
+
example_list = [['examples/cov1.png'],
|
3 |
+
['examples/cov2.jpg'],
|
4 |
+
['examples/nor1.png'],
|
5 |
+
['examples/nor2.jpg'],
|
6 |
+
['examples/penu1.jpg'],
|
7 |
+
['examples/penu2.jpg']]
|
8 |
|
9 |
title = "License plate reader π"
|
10 |
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."
|
11 |
|
12 |
+
gr.Interface.load("models/hamdan07/UltraSound-Lung",examples=example_list,title=title,description=description).launch(debug=False,share=False)
|
13 |
|