Views
No views yet
true, false or misleading.
Note that since this model was trained with data up to May 2020, the most recent information may not be reflected.transformers in python.1from transformers import pipeline
2pipe = pipeline("sentiment-analysis", model = "ans/vaccinating-covid-tweets")
3seq = "Vaccines to prevent SARS-CoV-2 infection are considered the most promising approach for curbing the pandemic."
4pipe(seq)1 [
2 {
3 "label": "false",
4 "score": 0.07972867041826248
5 },
6 {
7 "label": "misleading",
8 "score": 0.019911376759409904
9 },
10 {
11 "label": "true",
12 "score": 0.9003599882125854
13 }
14 ]true examples1"By the end of 2020, several vaccines had become available for use in different parts of the world."
2"Vaccines to prevent SARS-CoV-2 infection are considered the most promising approach for curbing the pandemic."
3"RNA vaccines were the first vaccines for SARS-CoV-2 to be produced and represent an entirely new vaccine approach."false examples"COVID-19 vaccine caused new strain in UK."false or misleading.False: includes false, no evidence, manipulated, fake, not true, unproven and unverifiedMisleading: includes misleading, exaggerated, out of context and needs contextTrue: includes true and correct| Training loss | Validation loss | Training accuracy | Validation accuracy |
|---|---|---|---|
| 0.1062 | 0.1006 | 96.3% | 94.5% |