imagenette / inference.py
cabreraalex's picture
initial commit
8bc0b6a
raw
history blame
274 Bytes
from zeno import inference, ZenoOptions
import gradio as gr
@inference
def gradio_inference(ops: ZenoOptions):
return (
[gr.Image(type="filepath"), gr.Textbox(label="Label")],
gr.Text(label="Output"),
[ops.data_column, ops.label_column],
)