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()