bmw_or_mercedes / app.py
cvergnes's picture
wip
03a7e25
raw
history blame
232 Bytes
import gradio as gr
image = gr.inputs.image(shape=(192,192))
label = gr.outputs.Label()
examples = ['bmw_750.jpeg']
intf = gr.Interface(fn=classify_image, inputs=image, outpluts=label, examples=examples)
intf.launch(inline=False)