Spaces:
Runtime error
Runtime error
File size: 542 Bytes
f9b47bb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
with gr.Blocks() as demo:
with gr.Column():
image = gr.Image(type="pil",label="Input")
submit_button = gr.Button(value="Submit", label="Submit")
with gr.Tab():
im1 = gr.Image(type='numpy',label='Image of damages')
with gr.Tab():
im2 = gr.Image(type='numpy',label='Image of scratches')
with gr.Tab():
im3 = gr.Image(type='numpy',label='Image of car parts')
with gr.Tab():
intersections = gr.Textbox(label='Information about type of damages on each part') |