Disclaimer: This page is under maintenance. Please DO NOT refer to the information on this page to make any decision yet.

Vaccinating COVID tweets

A fine-tuned model for fact-classification task on English tweets about COVID-19/vaccine.

Intended uses & limitations

You can classify if the input tweet (or any others statement) about COVID-19/vaccine is 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.

How to use

You can use this model directly on this page or using transformers in python.

from transformers import pipeline
pipe = pipeline("sentiment-analysis", model = "ans/vaccinating-covid-tweets")
seq = "Vaccines to prevent SARS-CoV-2 infection are considered the most promising approach for curbing the pandemic."
pipe(seq)
  [
    {
      "label": "false",
      "score": 0.07972867041826248
    },
    {
      "label": "misleading",
      "score": 0.019911376759409904
    },
    {
      "label": "true",
      "score": 0.9003599882125854
    }
  ]
"By the end of 2020, several vaccines had become available for use in different parts of the world."
"Vaccines to prevent SARS-CoV-2 infection are considered the most promising approach for curbing the pandemic."
"RNA vaccines were the first vaccines for SARS-CoV-2 to be produced and represent an entirely new vaccine approach."
"COVID-19 vaccine caused new strain in UK."

Limitations and bias

To conservatively classify whether an input sequence is true or not, the model may have predictions biased toward false or misleading.

Training data & Procedure

Pre-trained baseline model

1) Pre-training language model

2) Fine-tuning for fact classification

Evaluation results

Training loss Validation loss Training accuracy Validation accuracy
0.1062 0.1006 96.3% 94.5%

Contributors

<a href="https://gsds.snu.ac.kr/"><img src="https://gsds.snu.ac.kr/wp-content/uploads/sites/50/2021/04/GSDS_logo2-e1619068952717.png" width="200" height="80"></a>