Update app.py
Browse files
app.py
CHANGED
@@ -34,7 +34,13 @@ iface = gr.Interface(
|
|
34 |
gr.Number(label="Confidence Score")
|
35 |
],
|
36 |
title="Sentiment Analysis",
|
37 |
-
description="Analyze the sentiment of text in English and Arabic."
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
)
|
39 |
|
40 |
iface.launch()
|
|
|
34 |
gr.Number(label="Confidence Score")
|
35 |
],
|
36 |
title="Sentiment Analysis",
|
37 |
+
description="Analyze the sentiment of text in English and Arabic.",
|
38 |
+
examples=[
|
39 |
+
["I love this product!", "English"],
|
40 |
+
["This is the worst experience I've ever had.", "English"],
|
41 |
+
["أنا سعيد جدًا بهذا!", "Arabic"],
|
42 |
+
["هذا المكان سيء للغاية.", "Arabic"]
|
43 |
+
]
|
44 |
)
|
45 |
|
46 |
iface.launch()
|