Calistus commited on
Commit
e3db5bc
·
1 Parent(s): ecb51a9

add title and description

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -41,6 +41,9 @@ app = gr.Interface(
41
  inputs=gr.Textbox(placeholder="Write your tweet here..."),
42
  outputs="label",
43
  interpretation="default",
44
- examples=[["Please don't listen to anyone. Vaccinate your child"],['My kid has a lump on his hand because of the vaccine']])
 
 
 
45
 
46
  app.launch()
 
41
  inputs=gr.Textbox(placeholder="Write your tweet here..."),
42
  outputs="label",
43
  interpretation="default",
44
+ examples=[["Please don't listen to anyone. Vaccinate your child"],['My kid has a lump on his hand because of the vaccine']],
45
+ title= 'Sentiment Analysis App',
46
+ description= 'This app is designed to help you gauge the emotions and opinions expressed in text, particularly focusing on discussions related to measles vaccination on X(formerly Twitter). Simply input a tweet or any text, and the app will swiftly categorize it into one of three categories: Negative, Neutral, or Positive sentiment. '
47
+
48
 
49
  app.launch()