guru001's picture
input_img updated
d7579e3
raw
history blame
263 Bytes
import numpy as np
import gradio as gr
from model import api
sign_api = api()
def sign(input_img):
prediction = sign_api.predict(input_img)
return prediction
demo = gr.Interface(sign,inputs=gr.Image(shape=(200, 200)), outputs=gr.Label())
demo.launch()