Spaces:
Sleeping
Sleeping
File size: 535 Bytes
644c29a b41d696 644c29a b32dfd6 135d0ba b32dfd6 33da86c 29f48ec b41d696 135d0ba |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import gradio as gr
def greet(name):
return "Start " + name + "!"
demo = gr.Interface(
fn=greet,
inputs=gr.Textbox(lines=2, placeholder="Name Here..."),
outputs="text",
)
#demo.launch()
gr.Interface.load("models/omarhkh/resnet-50-finetuned-omar", title="This application is to classify images into 3 Classes \n Depth-Accepted: the image is accepted to Measure Trench Depth Quality \n \n Width-Accepted: the image is accepted to Measure Trench Width Quality \n Not-Accepted: the image is not accepted").launch() |