File size: 1,071 Bytes
eb4795a
 
 
c348026
 
eb4795a
 
 
 
c348026
eb4795a
 
c348026
 
eb4795a
 
c348026
eb4795a
 
c348026
eb4795a
d203720
321a18c
e8a0682
c348026
01f28c9
eb4795a
 
321a18c
c348026
eb4795a
 
321a18c
 
c348026
 
eb4795a
 
c348026
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
36
37
38
39
40
import gradio as gr
from fastai.vision.all import *
import pathlib

# Adjust the path handling for compatibility between different OS
temp = pathlib.PosixPath
pathlib.PosixPath = pathlib.WindowsPath
pathlib.PosixPath = temp

# Load your pre-trained model
learn = load_learner('model.pkl')
labels = learn.dls.vocab

# Prediction function
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))}

# Title and description
title = "Female/Male Classifier"
description = "A Female/Male classifier trained By Dr chamyoung."
# Ensure the correct path is given to your example images
examples = ['ChoeSuncha.png', 'IMG_5359.jpg']

# Update the Gradio Interface
inter = gr.Interface(
   fn=predict,
   inputs=gr.Image(type="pil"),
   outputs=gr.Label(),
   title=title,
   description=description,
   examples=examples,  # Make sure the images are correctly referenced
   cache_examples=False,  # Disable example caching
   examples_per_page=2
)

inter.queue()
inter.launch()