jan-gerhard-schopp commited on
Commit
be378fa
1 Parent(s): ddd817c

Add gradio

Browse files
Files changed (4) hide show
  1. app.py +27 -4
  2. horse.jpg +0 -0
  3. requirements.txt +5 -0
  4. zebra.jpg +0 -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_horse(x):
9
+ return x[0].isupper() # Used by model
10
+
11
+ import sys
12
+ sys.modules["__main__"].is_horse = is_horse
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 = ['/horse.jpg', '/zebra.jpg']
28
 
29
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
30
+ intf.launch()
horse.jpg ADDED
requirements.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ fastai
2
+ gradio
3
+ timm
4
+ torch
5
+ torchvision
zebra.jpg ADDED