gccopen / app.py
Javier Flores
sas
7cc1129
raw
history blame
240 Bytes
import gradio as gr
def predict(image):
return image
inp = gr.inputs.Image(source="webcam", shape=(224,224))
iface = gr.Interface(fn=predict, inputs=inp, outputs=predict,interpretation='default', capture_session=True)
iface.launch()