jrno commited on
Commit
cf5324f
1 Parent(s): ebd81dc

Add example and adjust app.py to use gradio

Browse files
Files changed (2) hide show
  1. app.py +35 -4
  2. example-male.jpg +0 -0
app.py CHANGED
@@ -1,7 +1,38 @@
 
 
 
1
  import gradio as gr
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!!!"
5
 
6
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
- iface.launch()
 
1
+ __all__ = ['learn', 'classify_image', 'categories', 'image', 'label', 'examples', 'intf']
2
+
3
+ from fastai.vision.all import *
4
  import gradio as gr
5
+ import timm
6
+
7
+ # Some magic according to https://forums.fast.ai/t/lesson-2-official-topic/96033/376?page=17
8
+ def is_cat(x):
9
+ return x[0].isupper() # Used by model
10
+
11
+ import sys
12
+ sys.modules["__main__"].is_cat = is_cat
13
+
14
+ # Upload your model
15
+ learn = load_learner('model.pkl')
16
+
17
+ categories = learn.dls.vocab
18
+
19
+ def classify_image(img):
20
+ pred,idx,probs = learn.predict(img)
21
+ return dict(zip(categories, map(float,probs)))
22
+
23
+ image = gr.Image()
24
+ label = gr.Label()
25
+
26
+ # Upload your own images and link them
27
+ examples = ['example-male.jpg']
28
+
29
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
30
+ intf.launch()
31
+
32
+ # import gradio as gr
33
 
34
+ # def greet(name):
35
+ # return "Hello " + name + "!!!!"
36
 
37
+ # iface = gr.Interface(fn=greet, inputs="text", outputs="text")
38
+ # iface.launch()
example-male.jpg ADDED