dreamboat26 commited on
Commit
b0f666a
1 Parent(s): 5ad7671

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ def classify_text(txt):
19
  text = gr.Textbox(lines=2, label='Describe how you feel in great detail')
20
  label = gr.Label()
21
 
22
- intf = gr.Interface(fn=classify_text, inputs=text, outputs=label, examples=examples, description=description)
23
  intf.launch(inline=False)
24
 
25
 
 
19
  text = gr.Textbox(lines=2, label='Describe how you feel in great detail')
20
  label = gr.Label()
21
 
22
+ intf = gr.Interface(fn=classify_text, inputs=text, outputs=label, description=description)
23
  intf.launch(inline=False)
24
 
25