Spaces:
Sleeping
Sleeping
Updated app.py with new examples.
Browse files
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 |
-
|
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 |
|