hand_ges / app.py
Manar312's picture
Upload 6 files
c9dcefe verified
Raw
History Blame Contribute Delete
314 Bytes
import gradio as gr
from predict import predict_image
demo = gr.Interface(
fn=predict_image,
inputs=gr.Image(type="numpy"),
outputs=[
gr.Label(num_top_classes=3)
],
title="Hand Gesture Recognition",
description="Upload an image of a hand gesture."
)
demo.launch()