<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>COVID-19 vaccine, AntiVax, Stance classification, Twitter analysis</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Sumanth Balaji</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Sagar Joshi</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Aditya Hari</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Abhijeeth Singam</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Vasudeva Varma</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Forum for Information Retrieval Evaluation</institution>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>International Institute of Information Technology</institution>
          ,
          <addr-line>Hyderabad</addr-line>
        </aff>
      </contrib-group>
      <abstract>
        <p>Since the discovery and betterment of vaccines for human diseases, Anti-Vaccine rhetoric and resistance have been prevalent in social circles. These sentiments adversely afect the efectiveness of preventing the contraction of deadly contagious diseases, such as COVID-19. With the advent of social media platforms, the expression of anti-vaccine stances has a far greater reach in society. In this paper, we tackle the task of COVID-19 vaccine stance detection to gauge people's receptiveness towards vaccines and subsequently understand the efectiveness of the vaccination drives.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>2. Literature Review</title>
    </sec>
    <sec id="sec-2">
      <title>1. Introduction</title>
      <p>
        © 2021 Copyright for this paper by its authors. Use permitted under Creative Commons License Attribution 4.0 International (CC BY 4.0).
found by making use of a Siamese BERT network to obtain the sentence representation given a
pair of a Tweet and the misinformation item to compare with. Recent work towards leveraging
unannotated data as well as experimenting with the aspect topics of tweets for vaccine attitude
detection was explored by [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. The paper experiments with a novel semisupervised approach
for vaccine attitude detection called VADET.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Dataset</title>
      <sec id="sec-3-1">
        <title>The datasets we make use of are the following:</title>
        <p>
          • Cotfas dataset: Cotfas et.al [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ] provided a dataset containing stances of tweets towards
COVID-19 vaccines, crawled between November-December 2020. We make use of the
entire dataset for our training.
• IRMiDis Task dataset: The organizers of IRMiDis Fire 2022 provide a dataset of crawled
tweets between March-December 2020 with various vaccine-related keywords. This
dataset is also made use of for the training set.
• VADet dataset: Vaccine stance detection dataset introduced by Lixing Zhu et.al [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ] consists
of 2800 tweet ids annotated for stance on vaccine as well as aspect and opinion spans.
We make use of the tweet ids and stance annotations to bolster our training dataset with
more samples.
        </p>
        <p>The test dataset consists of 717 tweet ids and text provided by the organizers.</p>
        <p>Each of the tweets was hydrated to retrieve tweet text and user description using Hydrator1.
Multiple instances of tweets or tweet authors/accounts not existing anymore were encountered,
causing a loss of around 20% of tweets as the tweet text was not retrievable in these cases.</p>
        <p>
          It is to be noted that vaccine stance correlates strongly with the political leaning of a person([
          <xref ref-type="bibr" rid="ref5">5</xref>
          ],
[
          <xref ref-type="bibr" rid="ref6">6</xref>
          ]). Hence, for our experiments, we also extract the user description (i.e., bio of the author of
each tweet). This is because of a hypothesis that keywords in the author’s biography might
clue the model towards the user’s political leaning and, consequently, their stance concerning
vaccines.
        </p>
        <p>The size and split of the final dataset used can be seen in Table 1</p>
        <sec id="sec-3-1-1">
          <title>Train</title>
          <p>5594</p>
        </sec>
        <sec id="sec-3-1-2">
          <title>Validation 988</title>
        </sec>
        <sec id="sec-3-1-3">
          <title>Test 717</title>
        </sec>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Experiment</title>
      <p>
        We carry out experiments using the CovidTwitter Bert [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] for encoding tweets. This is a
Bert model pretrained on COVID-related Twitter tweets, allowing it to have a better domain
1https://github.com/DocNow/hydrator
4.2. Preprocessing
In order to see the efect of preprocessing or cleaning of twitter text, we ran the experiments
on preprocessed as well raw, unprocessed data. For preprocessing, we experimented with
preprocessing of tweets through Ekphrasis2 which is a tool that allows for tokenization, word
normalization, word segmentation (for splitting hashtags), and spell-checking on Twitter data.
The results of models trained on preprocessed and unprocessed data can be seen in Table 2.
4.3. Using User Description
We run experiments to see if the corresponding Twitter author’s description helps the model
detect the author’s stance towards the COVID vaccine in their tweet. The results of models
trained on Description and NoDescription can be seen in Table 3.
      </p>
      <p>For all the experiments, training is done using the HuggingFace Trainer API for 4 epochs
with batch size 4 and learning rate 1.5 −5.</p>
    </sec>
    <sec id="sec-5">
      <title>5. Analysis</title>
      <sec id="sec-5-1">
        <title>We find the following:</title>
        <p>• Preprocessing of tweets does not contribute to improvement in metrics of accuracy and
F1. This could be caused due to the loss of semantic information neccessary for the
classification which is present in raw tweets, or the relatively small amount of tweet data
available for training, hence not being suficient for the model to learn a better correlation
from cleaned tweet text.
• Presence of the author’s Twitter description does not contribute to improvements in
performance, as the model seems to be ineficient on addition of that information. This
demonstrates the tweet-specific (and not user-oriented) nature of the task.
• Loss turned out to be a better metric to optimize rather than accuracy, as training models
for reduction of loss yielded better performance than training for an increase in accuracy.</p>
        <p>The best model’s performance in our validation dataset can be seen in Table 4. The
performance of this model in the shared task test dataset can also be seen in 5.</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>6. Future Work</title>
      <p>Future work can explore methods for utilizing unsupervised methods in order to tackle the lack
of data available on COVID vaccine stance. More experimentation should also be undertaken
to take into account user-specific information such as location, follower network between users
of the website, demographic, etc. Metrics of tweets such as likes, retweets, and shares can also
be utilized to gauge the reception of tweets by users of the website.</p>
      <sec id="sec-6-1">
        <title>2https://github.com/cbaziotis/ekphrasis</title>
      </sec>
    </sec>
    <sec id="sec-7">
      <title>7. Conclusion</title>
      <p>This paper describes the COVID vaccine stance detection system entered in Task 1 of IRMiDis
2022. Our method decomposes and experiments on the addition of diferent external information
and achieves the 3rd best performance in the shared task with an accuracy of 0.582 and a
macroF1 score of 0.528.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</surname>
          </string-name>
          , M.-
          <string-name>
            <given-names>W.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Toutanova</surname>
          </string-name>
          , Bert:
          <article-title>Pre-training of deep bidirectional transformers for language understanding</article-title>
          ,
          <year>2018</year>
          . URL: https://arxiv.org/abs/
          <year>1810</year>
          .04805. doi:
          <volume>10</volume>
          .48550/ARXIV.
          <year>1810</year>
          .
          <volume>04805</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>L.-A.</given-names>
            <surname>Cotfas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Delcea</surname>
          </string-name>
          , I. Roxin,
          <string-name>
            <given-names>C.</given-names>
            <surname>Ioanăş</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. S.</given-names>
            <surname>Gherai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Tajariol</surname>
          </string-name>
          ,
          <article-title>The longest month: Analyzing covid-19 vaccination opinions dynamics from tweets in the month following the first vaccine announcement</article-title>
          ,
          <source>IEEE Access 9</source>
          (
          <year>2021</year>
          )
          <fpage>33203</fpage>
          -
          <lpage>33223</lpage>
          . doi:
          <volume>10</volume>
          .1109/ACCESS.
          <year>2021</year>
          .
          <volume>3059821</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Hou</surname>
          </string-name>
          , P. van der Putten, S. Verberne,
          <article-title>The covmis-stance dataset: Stance detection on twitter for covid-</article-title>
          19 misinformation,
          <year>2022</year>
          . URL: https://arxiv.org/abs/2204.
          <year>02000</year>
          . doi:
          <volume>10</volume>
          . 48550/ARXIV.2204.
          <year>02000</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>L.</given-names>
            <surname>Zhu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Fang</surname>
          </string-name>
          , G. Pergola,
          <string-name>
            <given-names>R.</given-names>
            <surname>Procter</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <article-title>Disentangled learning of stance and aspect topics for vaccine attitude detection in social media</article-title>
          ,
          <year>2022</year>
          . URL: https://arxiv.org/abs/2205. 03296. doi:
          <volume>10</volume>
          .48550/ARXIV.2205.03296.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Milligan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. L.</given-names>
            <surname>Hoyt</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. K.</given-names>
            <surname>Gold</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hiserodt</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. W.</given-names>
            <surname>Otto</surname>
          </string-name>
          , Covid
          <article-title>-19 vaccine acceptance: influential roles of political party and religiosity</article-title>
          , Psychology,
          <source>Health &amp; Medicine</source>
          <volume>0</volume>
          (
          <year>2021</year>
          )
          <fpage>1</fpage>
          -
          <lpage>11</lpage>
          . URL: https://doi.org/10.1080/13548506.
          <year>2021</year>
          .
          <volume>1969026</volume>
          . doi:
          <volume>10</volume>
          .1080/13548506.
          <year>2021</year>
          .
          <volume>1969026</volume>
          . arXiv:https://doi.org/10.1080/13548506.
          <year>2021</year>
          .
          <volume>1969026</volume>
          , pMID:
          <fpage>34407721</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>G.</given-names>
            <surname>Pennycook</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>McPhetres</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Bago</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. G.</given-names>
            <surname>Rand</surname>
          </string-name>
          ,
          <article-title>Beliefs about covid-19 in canada, the united kingdom, and the united states: A novel test of political polarization and motivated reasoning</article-title>
          ,
          <source>Personality and Social Psychology Bulletin</source>
          <volume>48</volume>
          (
          <year>2022</year>
          )
          <fpage>750</fpage>
          -
          <lpage>765</lpage>
          . URL: https://doi.org/10.1177/01461672211023652. doi:
          <volume>10</volume>
          .1177/ 01461672211023652. arXiv:https://doi.org/10.1177/01461672211023652, pMID:
          <fpage>34180276</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>M.</given-names>
            <surname>Müller</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Salathé</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P. E.</given-names>
            <surname>Kummervold</surname>
          </string-name>
          ,
          <article-title>Covid-twitter-bert: A natural language processing model to analyse COVID-19 content on twitter</article-title>
          , CoRR abs/
          <year>2005</year>
          .07503 (
          <year>2020</year>
          ). URL: https: //arxiv.org/abs/
          <year>2005</year>
          .07503. arXiv:
          <year>2005</year>
          .07503.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>