Spaces:
Sleeping
Sleeping
Anis Taluqdar
commited on
Commit
·
1d8563f
1
Parent(s):
6163f8a
updated
Browse files
app.py
CHANGED
|
@@ -110,6 +110,10 @@ def main_func(sentence):
|
|
| 110 |
|
| 111 |
|
| 112 |
|
| 113 |
-
demo = gr.Interface(title="POS/NEG Sentence APP", fn=main_func, inputs="text", outputs="text", css="footer {visibility: hidden}"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 114 |
if __name__ == "__main__":
|
| 115 |
demo.launch(show_api=False)
|
|
|
|
| 110 |
|
| 111 |
|
| 112 |
|
| 113 |
+
demo = gr.Interface(title="POS/NEG Sentence APP", fn=main_func, inputs="text", outputs="text", css="footer {visibility: hidden}", examples=[
|
| 114 |
+
["I don't like that food?"],
|
| 115 |
+
["Will bangladesh will win in 2023 cricket world cup?"],
|
| 116 |
+
["Onion price is increasing"]])
|
| 117 |
+
|
| 118 |
if __name__ == "__main__":
|
| 119 |
demo.launch(show_api=False)
|