depp learnign model
Browse files
app.py
CHANGED
@@ -1,7 +1,24 @@
|
|
1 |
import gradio as gr
|
|
|
2 |
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
5 |
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
+
from fastai.vision.all import *
|
3 |
|
4 |
+
learn = load_learner('export.pkl')
|
5 |
+
categories = ('dragon fruit', 'Lemon', 'Orange', 'yellow apple', 'red apple', 'green apple')
|
6 |
+
def classify_image(img):
|
7 |
+
pred, idx, probs = learn.predict(img)
|
8 |
+
return dict(zip(categories, map(float, probs)))
|
9 |
|
10 |
+
image = gr.inputs.Image(shape = (256, 256))
|
11 |
+
label = gr.outputs.Label()
|
12 |
+
examples = ['apple.jpeg']
|
13 |
+
|
14 |
+
intf = gr.Interface(fn = classify_image, inputs=image, outputs=label, examples=examples)
|
15 |
+
intf.launch()
|
16 |
+
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
# def greet(name):
|
21 |
+
# return "Hello " + name + "!!"
|
22 |
+
|
23 |
+
# iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
24 |
+
# iface.launch()
|