publichealthsurveillance commited on
Commit
389748f
1 Parent(s): d2c2419

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,4 +24,4 @@ bert_io = gr.Interface(fn=bert, inputs="text", outputs="text")
24
  mental_io = gr.Interface(fn=mentalbert, inputs="text", outputs="text")
25
  phs_io = gr.Interface(fn=phsbert, inputs="text", outputs="text")
26
 
27
- Parallel(bert_io, mental_io, phs_io, examples=examples, title="Title", description="desc").launch()
 
24
  mental_io = gr.Interface(fn=mentalbert, inputs="text", outputs="text")
25
  phs_io = gr.Interface(fn=phsbert, inputs="text", outputs="text")
26
 
27
+ Parallel(bert_io, mental_io, phs_io, examples=examples, title="Vaccine Sentiment Task - VS2", description="Enter vaccine-related tweets to generate sentiment from 3 models (BERT, MentalBERT, PHS-BERT). Label 0='vaccine critical', 1='neutral', 2='vaccine supportive'. The three provided examples are labelled 0,1,2 respectively. For details about VS2, refer to our paper (linked provided in https://huggingface.co/publichealthsurveillance/PHS-BERT).").launch()