youj2005 commited on
Commit
5f715e8
1 Parent(s): 3c342a7

Update title card

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -47,9 +47,9 @@ def predict(context, intent):
47
 
48
  gradio_app = gr.Interface(
49
  predict,
50
- inputs=gr.Text(label="Input sentence"),
51
  outputs=[gr.Label(num_top_classes=3)],
52
- title="Hot Dog? Or Not?",
53
  )
54
 
55
  if __name__ == "__main__":
 
47
 
48
  gradio_app = gr.Interface(
49
  predict,
50
+ inputs=[gr.Text(label="Input sentence"), gr.Text(label="Class")],
51
  outputs=[gr.Label(num_top_classes=3)],
52
+ title="Intent Analysis",
53
  )
54
 
55
  if __name__ == "__main__":