WiggleGAN / app.py
Rodrigo_Cobo
testing
675a26e
raw
history blame
264 Bytes
import gradio as gr
def predict(image):
predictions = image
return image
iface = gr.Interface(
predict,
inputs=gr.inputs.Image(label="Upload hot dog candidate", type="filepath"),
outputs=gr.outputs,
title="Hot Dog? Or Not?",
)
iface.launch()