Changchoichang2104 commited on
Commit
e650550
·
1 Parent(s): f3b328f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +35 -4
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
+ # AUTOGENERATED! DO NOT EDIT! File to edit: ../Model into Production.ipynb.
2
+
3
+ # %% auto 0
4
+ __all__ = ['learn', 'categories', 'image', 'label', 'examples', 'intf', 'is_cat', 'classify_image']
5
+
6
+ # %% ../Model into Production.ipynb 1
7
+ from fastai.vision.all import *
8
+
9
+ # %% ../Model into Production.ipynb 2
10
  import gradio as gr
11
+ from gradio import *
12
+ from gradio.components import Image, Label
13
+
14
+ # %% ../Model into Production.ipynb 3
15
+ def is_cat(x): return x[0].issupper()
16
+
17
+ # %% ../Model into Production.ipynb 5
18
+ learn = load_learner('model.pkl')
19
+
20
+ # %% ../Model into Production.ipynb 7
21
+ categories = ('Dog', 'Cat')
22
+
23
+ def classify_image(img):
24
+ pred, idx, probs = learn.predict(img)
25
+ return dict(zip(categories, map(float, probs)))
26
+
27
+ # %% ../Model into Production.ipynb 9
28
+ # Initialize the image input component with the specified shape
29
+ image = Image()
30
+
31
+ # Initialize the label output component without the 'type' argument
32
+ label = Label()
33
+
34
+ examples = ['dog.jpeg']
35
 
36
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
 
37
 
38
+ intf.launch(share=True)