Pet Classifier
Browse files- app.py +18 -4
- export.pkl +3 -0
- train.py +14 -0
app.py
CHANGED
@@ -1,7 +1,21 @@
|
|
1 |
import gradio as gr
|
|
|
2 |
|
3 |
-
|
4 |
-
|
5 |
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
+
from fastai.vision.all import *
|
3 |
|
4 |
+
learn = load_learner('export.pkl')
|
5 |
+
labels = learn.dls.vocab
|
6 |
|
7 |
+
def predict(img):
|
8 |
+
img = PILImage.create(img)
|
9 |
+
pred,pred_idx,probs = learn.predict(img)
|
10 |
+
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
11 |
+
|
12 |
+
iface = gr.Interface(
|
13 |
+
fn=predict,
|
14 |
+
inputs=gr.components.Image(shape=(512, 512)),
|
15 |
+
outputs=gr.components.Label(num_top_classes=3),
|
16 |
+
description="Pet Classifier",
|
17 |
+
article="<p style='text-align: center'><a href='google.com' target='_blank'>Blog post</a></p>",
|
18 |
+
live=True,
|
19 |
+
enable_queue=True,
|
20 |
+
)
|
21 |
+
iface.launch()
|
export.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:420e67bbf65e10fa2c72062d197f2827662866716ea92c08d3d2c3d15c93a9c4
|
3 |
+
size 103071997
|
train.py
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from fastai.vision.all import *
|
2 |
+
|
3 |
+
path = untar_data(URLs.PETS)
|
4 |
+
dls = ImageDataLoaders.from_name_re(path,
|
5 |
+
get_image_files(path/'images'), pat='(.+)_\d+.jpg',
|
6 |
+
item_tfms=Resize(460),
|
7 |
+
batch_tfms=aug_transforms(size=224, min_scale=0.75),
|
8 |
+
num_workers=0,
|
9 |
+
bs=16,
|
10 |
+
)
|
11 |
+
learn = vision_learner(dls, models.resnet50, metrics=accuracy)
|
12 |
+
learn.fine_tune(1)
|
13 |
+
learn.path = Path('.')
|
14 |
+
learn.export()
|