thliang01 commited on
Commit
c9d8c60
·
1 Parent(s): 4632a14

feat: update app.py

Browse files
Files changed (1) hide show
  1. app.py +31 -4
app.py CHANGED
@@ -1,7 +1,34 @@
 
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
+ def is_cat(x):
5
+ return x[0].isupper()
6
 
7
+ learn = load_learner('model.pkl')
8
+
9
+ categories = ('Dog', 'Cat')
10
+
11
+ def classify_image(img):
12
+ pred, idx, probs = learn.predict(img)
13
+ return dict(zip(categories, map(float, probs)))
14
+
15
+ image = gr.inputs.Image(shape=(192, 192))
16
+ label = gr.outputs.Label()
17
+ examples = ['Dog.jpg', 'cat.jpg', 'dunno.jpg']
18
+ title = "Dogs V Cats Classifier"
19
+ description = "A classifier trained on the Oxford Pets dataset with fastai. Created as a demo for Gradio and HuggingFace Spaces."
20
+ interpretation='default'
21
+ enable_queue=True
22
+
23
+ intf = gr.Interface(
24
+ fn=classify_image,
25
+ inputs=image,
26
+ outputs=label,
27
+ examples=examples,
28
+ title=title,
29
+ description=description,
30
+ interpretation=interpretation,
31
+ enable_queue=enable_queue
32
+ )
33
+
34
+ intf.launch(inline=False, share=True)