Viet
commited on
Commit
·
6869e68
1
Parent(s):
374669b
commit using git bash
Browse files
app.py
CHANGED
@@ -1,7 +1,31 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
def greet(name):
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
-
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
-
iface.launch()
|
|
|
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()
|
8 |
+
|
9 |
+
|
10 |
+
|
11 |
+
from fastai.vision.all import *
|
12 |
+
import gradio as gr
|
13 |
+
|
14 |
+
def is_cat(x): return x[0].isupper()
|
15 |
+
|
16 |
+
learn = load_learner('model.pkl')
|
17 |
+
|
18 |
+
categories = ('Dog', 'Cat')
|
19 |
+
|
20 |
+
def classify_image(img):
|
21 |
+
pred,idx, probs = learn.predict(img)
|
22 |
+
return dict(zip(categories, map(float,probs)))
|
23 |
+
|
24 |
+
image = gr.inputs.Image(shape=(192,192))
|
25 |
+
label = gr.outputs.label()
|
26 |
+
examples = ['cat.jpg']
|
27 |
+
|
28 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
29 |
+
intf.launch(inline=False)
|
30 |
+
|
31 |
|
|
|
|
cat.jpg
ADDED
![]() |
model.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2e05380bcc1c913031be2fbe46130e2618653de880805b367ce8b882ad4f9e2a
|
3 |
+
size 47061419
|