DemahAlmutairi commited on
Commit
f4ab359
·
verified ·
1 Parent(s): 236c9ff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
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()