Spaces:
Runtime error
Runtime error
File size: 488 Bytes
9b1acb1 56467b5 9b1acb1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import gradio as gr
import tensorflow as tf
from tensorflow import keras
learn=tf.keras.models.load_model("gender_classification_model.h5")
categories=('male','female')
def classify_image(img):
pred,idx,probs=learn.predict(img)
return dict(zip(categories,map(float,probs)))
image=gr.inputs.Image(shape=(192,192))
label=gr.outputs.Label()
examples=['male.jpg','female.jpg']
intf=gr.Interface(fn=classify_image,inputs=image,outputs=label,examples=examples)
intf.launch(inline=False) |