Spaces:
Runtime error
Runtime error
Add code in app.py
Browse files
app.py
CHANGED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import fastai.vision.all import *
|
2 |
+
import gradio as gr
|
3 |
+
|
4 |
+
learn = load_learner("model_tvdesktop.pkl")
|
5 |
+
labels = learn.dls.vocab
|
6 |
+
|
7 |
+
def classify_image(img):
|
8 |
+
img = PILImage.create(img)
|
9 |
+
pred, idx, probs = learn.predict(img)
|
10 |
+
return dict(zip(labels, map(float, probs)))
|
11 |
+
|
12 |
+
image = gr.inputs.Image(shape=(224, 224))
|
13 |
+
label = gr.outputs.Label()
|
14 |
+
|
15 |
+
title = "CRT TV and Desktop Monitor Classifier"
|
16 |
+
description = "A simple image classifier."
|
17 |
+
|
18 |
+
intf = gr.Interface(
|
19 |
+
fn=classify_image,
|
20 |
+
inputs=image,
|
21 |
+
outputs=label,
|
22 |
+
title=title,
|
23 |
+
description=description
|
24 |
+
)
|
25 |
+
|
26 |
+
intf.launch(inline=False)
|