File size: 1,026 Bytes
8cda086
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# AUTOGENERATED! DO NOT EDIT! File to edit: app.ipynb.

# %% auto 0
__all__ = ['learn', 'labels', 'examples', 'add_image_label', 'predict']

# %% app.ipynb 2
import timm
from fastai.vision.all import *
import gradio as gr


def add_image_label(x):
    names = ["gond", "kalighat", "kangra", "madhubani", "mandana", "pichwai", "warli"]
    for name in names:
        if name in Path(x).name:
            return name
        elif "kerala" in Path(x).name:
            return "kerala mural"
    return "unknown"

# %% app.ipynb 4
learn = load_learner("model.pkl")

# %% app.ipynb 6
labels = learn.dls.vocab
def predict(img):
    img = PILImage.create(img)
    pred,pred_idx,probs = learn.predict(img)
    return {labels[i]: float(probs[i]) for i in range(len(labels))}


# %% app.ipynb 8
examples = ["examples//warli.jpeg", "examples//madhubani.jpg"]
gr.Interface(fn=predict, inputs=gr.Image(type="pil"), outputs=gr.Label(num_top_classes=3), examples = examples, title = "Indian Art Classifier").launch(inline=False, debug=True)