Prasanthin commited on
Commit
674984d
1 Parent(s): 2970095

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1,4 +1,4 @@
1
  import gradio as gr
2
  def greet(name): return f"hello {name}"
3
 
4
- gr.Interface(fn=predict,inputs=gr.inputs.Image(shape=(512, 512)),outputs=gr.outputs.Label(num_top_classes=3),title=title,description=description,article=article,examples=examples,interpretation=interpretation,enable_queue=enable_queue).launch()
 
1
  import gradio as gr
2
  def greet(name): return f"hello {name}"
3
 
4
+ gr.Interface(fn=greet,inputs="text",outputs="text").launch()