raghunc0's picture
First commit to gradio
3af152b
raw
history blame contribute delete
184 Bytes
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()