Files changed (7) hide show
  1. app.ipynb +0 -0
  2. app.py +4 -18
  3. cat.jpg +0 -0
  4. dog.jpg +0 -0
  5. horse.jpg +0 -0
  6. model.pkl +0 -3
  7. requirements.txt +0 -1
app.ipynb DELETED
The diff for this file is too large to render. See raw diff
 
app.py CHANGED
@@ -1,21 +1,7 @@
1
- from fastai.vision.all import *
2
  import gradio as gr
3
 
4
- def is_cat(x): return x[0].isupper()
5
-
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', 'horse.jpg']
18
-
19
- intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
20
- intf.launch(inline=False)
21
 
 
 
 
 
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()
cat.jpg DELETED
Binary file (207 kB)
 
dog.jpg DELETED
Binary file (122 kB)
 
horse.jpg DELETED
Binary file (49.7 kB)
 
model.pkl DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:a2334b535eac51eec39cb753a65cd5949563c84ac66d24cd0c9c0a85b57a5b72
3
- size 47061419
 
 
 
 
requirements.txt DELETED
@@ -1 +0,0 @@
1
- fastai==2.7.12