Gilles commited on
Commit
e80c983
·
1 Parent(s): b024a8d

[CREATE] Initial book type prediction app

Browse files
Files changed (5) hide show
  1. app.py +16 -4
  2. fantasy.jpg +0 -0
  3. non fiction.jpg +0 -0
  4. romance.jpg +0 -0
  5. scifi.jpg +0 -0
app.py CHANGED
@@ -1,7 +1,19 @@
 
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
+ from fastai.vision.all import *
2
  import gradio as gr
3
 
4
+ learn = load_learner('model.pkl')
 
5
 
6
+ categories = learn.dls.vocab
7
+
8
+ def classify_image(img):
9
+ img = PILImage.create(img)
10
+ pred, idx, probs = learn.predict(img)
11
+ return dict(zip(categories, map(float, probs)))
12
+
13
+ image = gr.inputs.Image(shape=(192, 192))
14
+ label = gr.outputs.Label()
15
+ examples = ['romance.jpg', 'non fiction.jpg', 'scifi.jpg', 'fantasy.jpg',]
16
+
17
+ iface = gr.Interface(fn=classify_image, inputs=image, outputs=label,
18
+ examples=examples)
19
+ iface.launch(inline=False)
fantasy.jpg ADDED
non fiction.jpg ADDED
romance.jpg ADDED
scifi.jpg ADDED