Spaces:
Runtime error
Runtime error
Commit
·
4d7a984
1
Parent(s):
d60f37c
Add app.py
Browse files- app.py +17 -0
- requirements.txt +1 -0
app.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from fastai.vision.all import *
|
| 2 |
+
import gradio as gr
|
| 3 |
+
|
| 4 |
+
learn = load_learner('bear_classifier_model.pkl')
|
| 5 |
+
|
| 6 |
+
categories = ('black', 'grizzly', '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 |
+
examples = ['black.jpg', 'grizzly.jpg', 'teddy.jpg']
|
| 15 |
+
|
| 16 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
| 17 |
+
intf.launch(inline=False)
|
requirements.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
fastai
|