curtpond commited on
Commit
17ac362
·
1 Parent(s): 7129d6d

Updated app.py with new examples.

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -17,9 +17,7 @@ iface = gr.Interface(fn=predict,
17
  title="Text Classification",
18
  description="Classify text as other[0], healthcare[1], or technology[2]",
19
  examples=[
20
- ['This is a text about healthcare'],
21
- ['This is a text about technology'],
22
- ['This is a text about other']],
23
  allow_flagging='never'
24
  )
25
 
 
17
  title="Text Classification",
18
  description="Classify text as other[0], healthcare[1], or technology[2]",
19
  examples=[
20
+ 'This is a text about healthcare', 'This is a text about technology', 'This is a text about other'],
 
 
21
  allow_flagging='never'
22
  )
23