nirlevy98 commited on
Commit
b536b68
1 Parent(s): b8892ef
Files changed (4) hide show
  1. app.py +19 -4
  2. black.webp +0 -0
  3. grizzly.jpg +0 -0
  4. teddy.webp +0 -0
app.py CHANGED
@@ -1,7 +1,22 @@
 
1
  import gradio as gr
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
5
 
6
- demo = gr.Interface(fn=greet, inputs="text", outputs="text")
7
- demo.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from fastai.vision.all import *
2
  import gradio as gr
3
 
4
+ def is_teddy(x): return x[0].isupper()
 
5
 
6
+ # Cell
7
+ learn = load_learner('model.pk1')
8
+
9
+ # Cell
10
+ categories = ('Teddy', 'Grizzly')
11
+
12
+ def classify_image(img):
13
+ pred,idx,probs = learn. predict(img)
14
+ return dict(zip(categories, map(float, probs) ))
15
+
16
+ # Cell
17
+ image = gr.inputs. Image(shape=(192, 192))
18
+ label = gr. outputs.Label()
19
+ examples = ['teddy.webp', 'grizzly.jpg', 'black.webp']
20
+
21
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
22
+ intf.launch(inline=False)
black.webp ADDED
grizzly.jpg ADDED
teddy.webp ADDED