File size: 890 Bytes
489df57
 
ce35a1d
 
 
 
 
489df57
ce35a1d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import gradio as gr

from fastcore.all import *
from fastai.vision.all import *
from fastai.vision.widgets import *
import pickle
import torch


def label_func (f):
    return f[:2] !="1 "

Pkl_Filename = "learner.pkl"
with open(Pkl_Filename, 'rb') as file:  
    learn = torch.load ( file , map_location=torch.device('cpu') )
    
category = ("Waifu" , "Human")
def infer_im (im ) :
    pre , idx , prob = learn.predict (im)
    flo_prob = list ( map (float , prob) )[0]
    return dict ( zip (category , ( flo_prob , 1 - flo_prob ) ) )


examples = ["1 (1004).jpg",
           "498970d2f45988eae9d6a2eb59bc450f.jpg" ,
           "10010892_result.jpg" , 
           "10019581_result.jpg"]

gr.Interface(fn= infer_im, 
             inputs=gr.inputs.Image(shape=(128 , 128)),
             outputs=gr.outputs.Label(num_top_classes=2) ,
            examples = examples ).launch(inline = False)