File size: 184 Bytes
8d0d9cb
 
3af152b
8d0d9cb
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

def greet(input):
    return "Hello! this page is to show the use of gradcam images"

iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()