raghunc0 commited on
Commit
3af152b
·
1 Parent(s): 8d0d9cb

First commit to gradio

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1,6 +1,6 @@
1
  import gradio as gr
2
 
3
- def greet():
4
  return "Hello! this page is to show the use of gradcam images"
5
 
6
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
 
1
  import gradio as gr
2
 
3
+ def greet(input):
4
  return "Hello! this page is to show the use of gradcam images"
5
 
6
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")