Vinther commited on
Commit
48c3b32
1 Parent(s): 06b7b98

Upload 4 files

Browse files

Jeremy Howard example

Files changed (4) hide show
  1. app.py +27 -4
  2. basset.jpg +0 -0
  3. model.pkl +3 -0
  4. requirements.txt +5 -0
app.py CHANGED
@@ -1,7 +1,30 @@
 
 
 
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 = ['basset.jpg']
28
 
29
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
30
+ intf.launch()
basset.jpg ADDED
model.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bce2d27bb942eb4861dc21319bc29d493dc3ffb5cc8e8b4eb325f646f274e886
3
+ size 47061419
requirements.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ fastai
2
+ gradio
3
+ timm
4
+ torch
5
+ torchvision