Spaces:
Build error
Build error
deploy
Browse files- app.py +16 -4
- bedroom.jpg +0 -0
- bedroom_or_kitchen.pkl +3 -0
- quarto.jpg +0 -0
app.py
CHANGED
@@ -1,7 +1,19 @@
|
|
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('bedroom_or_kitchen.pkl', 'rb')
|
|
|
5 |
|
6 |
+
categories = ("Bedroom", "Kitchen")
|
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 |
+
examples = ['bedroom.jpg', 'quarto.jpg']
|
16 |
+
|
17 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
18 |
+
|
19 |
+
intf.launch()
|
bedroom.jpg
ADDED
bedroom_or_kitchen.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bc0296a2c5406a9b87f71f01412a107f96477edfd4c628545cf4638e7f99fa57
|
3 |
+
size 47011499
|
quarto.jpg
ADDED