youj2005 commited on
Commit
9bba617
1 Parent(s): 78cf820

Fix default

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -48,7 +48,7 @@ def predict(context, intent, multi_class):
48
 
49
  gradio_app = gr.Interface(
50
  predict,
51
- inputs=[gr.Text("Sentence"), gr.Text("Class"), gr.Checkbox("Allow multiple true classes", default=True)],
52
  outputs=[gr.Label(num_top_classes=3)],
53
  title="Intent Analysis",
54
  )
 
48
 
49
  gradio_app = gr.Interface(
50
  predict,
51
+ inputs=[gr.Text("Sentence"), gr.Text("Class"), gr.Checkbox("Allow multiple true classes")],
52
  outputs=[gr.Label(num_top_classes=3)],
53
  title="Intent Analysis",
54
  )