Spaces:
Build error
Build error
Mr-DG-Wick commited on
Commit ·
94e3e3a
1
Parent(s): 28204a2
modified app.py and added model.pkl
Browse files
app.py
CHANGED
|
@@ -1,7 +1,16 @@
|
|
| 1 |
import gradio as gr
|
|
|
|
| 2 |
|
| 3 |
-
|
| 4 |
-
return "Hello " + name + "!!"
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
+
from fastai.vision.all import *
|
| 3 |
|
| 4 |
+
learn = load_learner('model.pkl')
|
|
|
|
| 5 |
|
| 6 |
+
categories = ("Grizzly", "Black", "Teddy")
|
| 7 |
+
|
| 8 |
+
def classify_image(img):
|
| 9 |
+
pred,idx,probs = learn.predict(img)
|
| 10 |
+
return dict(zip(categories, map(float, probs)))
|
| 11 |
+
|
| 12 |
+
image = gr.inputs.Image(shape=(192,192))
|
| 13 |
+
label = gr.outputs.Label()
|
| 14 |
+
|
| 15 |
+
iface = gr.Interface(fn=classify_image, inputs=image, outputs=label)
|
| 16 |
+
iface.launch(inline=False)
|
model.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3055c8d386c9fc3e614690ae6aca5851ea12adb204b637d1d9fb837c6262ef41
|
| 3 |
+
size 46961981
|