Spaces:
Sleeping
Sleeping
Model
Browse files- .gitignore +1 -0
- app.py +13 -4
- horh.pkl +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
__pycache__
|
app.py
CHANGED
@@ -1,7 +1,16 @@
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
4 |
-
return "Hello " + name + "!!"
|
5 |
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from fastai.vision.all import *
|
2 |
import gradio as gr
|
3 |
|
4 |
+
learn = load_learner("horh.pkl")
|
|
|
5 |
|
6 |
+
categories = ("Hiroshige", "Hokusai")
|
7 |
+
|
8 |
+
def classify_image(img):
|
9 |
+
pred, ix, probs = learn.predict(img)
|
10 |
+
return dict(zip(categories, map(float, probs)))
|
11 |
+
|
12 |
+
image = gr.inputs.Image(shape=(192, 192))
|
13 |
+
label = gr.outputs.Label()
|
14 |
+
|
15 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label)
|
16 |
+
intf.launch(inline=False)
|
horh.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:64a3b63dce37e39bdc21cb7b88d587aa6697431a35ed19f8a96ccb7848c8bd75
|
3 |
+
size 46996473
|