<!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>Stacked Model based Argument Extraction and Stance Detection using Embedded LSTM model</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Pavani Rajula</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Chia-Chien Hung</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Simone Paolo Ponzetto</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Data and Web Science Group, University of Mannheim</institution>
          ,
          <country country="DE">Germany</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>In this paper, we present our submission approach for the third Touché lab at CLEF 2022 [1], shared task 2 on Argument Retrieval for Comparative Questions, which tackles answering comparative questions based on argument retrieval of text passages to support answering comparative questions in the scenario of personal decision making. The previous two Touché editions [2] [3] mostly focused on retrieving complete arguments and documents, while this edition is about whether argument retrieval can support decision-making directly by extracting the argumentative gist from documents, by classifying their stance with respect to the objects compared. In our approach, we performed tokenization and named entity recognition using a RoBERTa classifier. Followed by generating Boolean queries by categorizing the words in must and should terms. The top 100 results are retrieved from an Elasticsearch index that contains the corpus provided for the shared task. Result documents are then stripped of code, advertisements, and other noise. A Stacked model with SVM model, DistilBERT, and a learning metamodel binary classification [ 4] is performed on a sentence level. Extracted arguments are then scored based on a mix of BM25, the ratio of argument sentences in a document, and the similarity of the query and the sentences in the document. Finally, stance detection is then performed on a per-document-base using a word-embedding LSTM model. Our system, achieved a retrieval performance quality score of 0.492 mean nDCG@5 and relevance score of 0.582 mean nDCG@5 which is a slight improvement over the baseline scores.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Comparative Questions</kwd>
        <kwd>Argument Identification</kwd>
        <kwd>Natural Language Processing</kwd>
        <kwd>Stance Detection</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>Having alternatives and multiple options for everything these days, people tend to search for
them and compare, to get the best among the choices available. The web contains a vast number
of opinions and objective arguments that can facilitate the comparative decision-making process,
but a faceted view of diferent aspects of the search topic makes it dificult. It creates the need of
developing an open-domain general system that could process such information, and generate
insights that support the user in informing well-justified opinions. Such a system has several
challenges which include assessing an argument’s relevance to a query, deciding what is an
argument’s main gist in terms of the take-away, and estimating how well an implied stance is
justified. As this problem drives the attention of many researchers, such events as the Touché
Lab on Argument Retrieval at CLEF, foster research on argument retrieval and establish more
collaboration and exchange of ideas and data sets among researchers and collaborate to develop
and share retrieval approaches that aim to support social and personal decisions.</p>
      <p>We present in this paper our adopted approach for participation as Team Olivier Armstrong
in the third Touché lab on argument retrieval at CLEF 2022, Shared Task 2. The main objective
of this task is to use argument retrieval to support decision-making directly by extracting
the argumentative gist from documents. Followed by classifying their stance with respect to
the objects compared. The goal is to retrieve relevant documents from the given document
collection, rank them using diferent approaches, and finally find the stance. Our approach to
the submission made to this task is presented in detail in this paper.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related Work</title>
      <p>
        The approaches submitted for the previous two Touché editions [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] are the most relevant
work, which have about 130 submissions from 44 teams who have participated. Various
approaches were proposed, which involved initial document retrieval using ChatNoir [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] search
engine by using the original query, query pre-processing, and various query expansion techniques
such as synonyms from WordNet [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], word embeddings using sense2vec [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] or word2vec [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ],
argument retrieval techniques, predicting document relevance labels by using a random forest
classifier, XGBoost [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], LightGBM [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] and also implemented multiple (re-)ranking algorithms.
The conclusive paper gives an overview of the implemented systems and ideas.
      </p>
      <p>
        Argument mining problem, claim and premise detection drives the attention of various
researchers [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ], An open-source API for the argument retrieval from the text is TARGER [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ],
DistilBERT-based Argumentation Retrieval [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] proposed by one of the teams participated
in Touché 2021 and there was also a Stacked Model proposed for Argument Identification
[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], which tackles the argument identification task by following two approaches: a classical
machine learning approach Support Vector Machine (SVM) model [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] and a DistilBert-based
approach [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ].
      </p>
      <p>
        Stance classification is an active research area that has been studied in diferent domains.
Determining the stand of the text toward a concrete entity or an abstract idea is quite
challenging. Supervised learning is the basic and most common approach for most work on stance
detection [
        <xref ref-type="bibr" rid="ref16 ref17">16, 17</xref>
        ]. Many studies have proposed diferent supervised ML algorithms such as
classical algorithms, for instance, Naive Bayes (NB), SVM, decision trees, deep learning algorithms,
RNNs, and LSTMs [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ] [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ] [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] , to detect the stance.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Datasets</title>
      <p>
        Touchè organizers have provided 50 comparative questions (topics), for which documents are
to be retrieved from the given corpus which is a collection document of about 0.9 million text
passages. Stance data set [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ] is also provided which has data dump from Stack Exchange1
      </p>
      <sec id="sec-3-1">
        <title>1https://archive.org/details/stackexchange</title>
        <p>
          and L6 - Yahoo! Answers Comprehensive Questions and Answers version 1.0 (multi-part)2,
which contains questions from Yahoo and Stack Exchange, with the best answer and answer
stance. Additional resources include a Subset of MS MARCO with comparative questions and
a collection of text passages expanded with queries generated using DocT5Query. All these
datasets are available on the task page.3 For training, the stacked model datasets - Student
Essays [
          <xref ref-type="bibr" rid="ref21">21</xref>
          ] and Web discourse [
          <xref ref-type="bibr" rid="ref22">22</xref>
          ] which are publicly available are used for this purpose.
        </p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Methodology</title>
      <p>
        The approach is built with one of the previous year’s team paper[
        <xref ref-type="bibr" rid="ref23">23</xref>
        ] as a baseline. The approach
pipeline has multiple components which include query pre-processing, query expansion,
document retrieval using elastic search, and further re-rank them through argument identification
using a stacked model [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. Followed by sorting the documents by multiple ranking scores
and finally retrieving the top relevant arguments for stance detection by the embedded LSTM
model. Our architecture of the proposed approach to building a search engine for answering
comparative questions is presented in Figure 1. Each component in this architecture is explained
in detail in the following sub-sections.
      </p>
      <sec id="sec-4-1">
        <title>4.1. Query Parsing, Token Classification, and Query Expansion</title>
        <p>
          Understanding the query and recognizing the query attributes would help in better query
enrichment for document retrieval. Based on the approach suggested in the paper Towards
Understanding and Answering Comparative Questions [
          <xref ref-type="bibr" rid="ref20">20</xref>
          ], we used the token-based Named
Entity Recognition(NER) model using RoBERTa classifier [
          <xref ref-type="bibr" rid="ref24">24</xref>
          ] to tokenize the queries and label
the objects, aspects, and predicates. And then query expansion is done by parsing the query,
removing the stop words, and considering the labeled entities in the previous step, the words
are classified into should and must categories and build a Boolean query. Entities - Objects
and their synonyms fetched using WordNet are considered as must words and Aspect, Predict
2https://webscope.sandbox.yahoo.com/catalog.php?datatype=l
3https://webis.de/events/touche-22/shared-task-2.html
and its synonyms are considered as should words. By the end of this stage Boolean query is
generated joined by ’AND’ and ’OR’ based on the category.
        </p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Document Retrieval</title>
        <p>
          In this approach, we have used Elasticsearch client4, an open-source search engine, which allows
us to store, and search from the huge volume of data, the same is used to improve ChatNoir [
          <xref ref-type="bibr" rid="ref25">25</xref>
          ]
All the documents from the given corpus with the collection of documents are indexed with the
contents field provided in the data set along with document_id as the id. The body of the index
consists of chatNoirUrl and processed content - removal of special characters, stop words, and
lemmatized verbs and nouns with nltk [
          <xref ref-type="bibr" rid="ref26">26</xref>
          ]. For each query topic, the boolean query built in
the previous step is used to search from the Elasticsearch index dump and retrieve the top 100
documents.
        </p>
      </sec>
      <sec id="sec-4-3">
        <title>4.3. Argument Extraction</title>
        <p>
          Argument identification is used to detect the comparative sentences in the document. To get full
content, using Boilerpy35 and Trafilatura 6 and the URL from the Elasticsearch results is used to
retrieve the HTML source page, removing tags, advertisements, and other cleaning processes.
For sentences from the documents, binary classification is applied using the stacked model,
which is modeled using Student Essays and Web discourse data sets, and then every sentence is
classified as an argument or non-argument. The stacked model architecture consists of two
main components: the base models, which include the trained SVM model and the trained
transformer-based model (DistilBERT) in parallel, and the meta-model, which will learn from
the outputs of the two models to produce the final prediction of a sentence. The proposed
Stacked model compared to DistilBERT achieved better performance when trained with the
Student Essays and Web Discourse datasets. [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ]
        </p>
      </sec>
      <sec id="sec-4-4">
        <title>4.4. Scoring and Sorting</title>
        <p>Now in this step, the score is estimated using the best matching between the query and the
arguments extracted from the documents to sort and rank them accordingly. Unlike the baseline
approach, only three diferent scores are considered to evaluate the argument quality which are
• BM25 measure: Calculating on argumentative sentences of each document with respect to
the original query, through re-indexing the retrieved documents by creating new ones that
contain only argumentative sentences. Then the arg-BM25 score of each the document is
calculated by querying the new argumentative documents with the original topic.
• Argument support score: Representing the ratio of argument sentences among all existent
sentences in the document.
• Similarity score: Evaluating the similarity of two sentences based on the context and</p>
        <p>
          English language understanding using the SentenceTransformer library[
          <xref ref-type="bibr" rid="ref27">27</xref>
          ], which is
        </p>
        <sec id="sec-4-4-1">
          <title>4https://www.elastic.co/ 5https://github.com/jmriebold/BoilerPy3 6https://github.com/adbar/trafilatura</title>
          <p>calculated using the similarity between the original query and every argumentative
sentence in the document, and considers the average as the score.</p>
          <p>All these scores are normalized and all the scores are summed up using the respective weights
then the documents are sorted and the top 25 highly relevant documents are fetched and ranked
based on the descending scores.</p>
        </sec>
      </sec>
      <sec id="sec-4-5">
        <title>4.5. Stance detection</title>
        <p>
          Now that the top relevant documents are retrieved, the next step is to retrieve the relevant
argument passages to detect their stance with respect to the query objects. In this approach,
assuming that all the arguments with a good argument quality score for the query, is the
most relevant passage, will be used for the stance detection. Argument quality [
          <xref ref-type="bibr" rid="ref28">28</xref>
          ] here is
measured by the averaging list of arguments and query pairs, using the pre-trained neural
network from the IBM Debater project [
          <xref ref-type="bibr" rid="ref29">29</xref>
          ] API service. Given a list of sentences and the query,
The API returns a score ranging between 0, indicating that sentence is of the lowest quality to
1, indicating that sentence is of very high quality, for the query.
        </p>
        <p>
          Number of studies [
          <xref ref-type="bibr" rid="ref18">18</xref>
          ] has shown that for conversation-based tasks, the LSTM approach
outperforms other sequential classifiers and feature-based models. Long Short Term Memory
networks are a special kind of RNN, capable of learning long-term dependencies. An LSTM
recurrent unit tries to remember all the past knowledge that the network is seen so far and to
forget irrelevant data. This is done by introducing diferent activation function layers called
gates for diferent purposes. Each recurrent unit also maintains a vector called the Internal
Cell State which conceptually describes the information that was chosen to be retained by the
previous LSTM recurrent unit.
        </p>
        <p>We experimented with the stance dataset provided by Touchè, which is annotated using
predefined labels which are No stance, Neutral, Pro first object, and Pro second object. Figure 2
shows the model architecture used in this approach. The dataset is split into a training set
and a test set using an 80:20 split. First, the argument passage is concatenated with both
the objects separately with the same stance label for both. Pre-processing is performed on
both the data split, based on the tokenization technique, where the text is tokenized and each
token is transformed into an index-based representation. Then, each token sentence-based
indexes will be passed sequentially through an embedding layer, this embedding layer will
output an embedded representation of each token which is passed through a spatial dropout
layer [30], are passed through an LSTM neural net, stacked by a dense layer. The following
settings for LSTM-based models were chosen: input layer size 500 (equal to the word embedding
dimension), hidden layer size of 60, training for max 10 epochs with initial learning rate 1e-3
using ADAM [31] for optimization, dropout 0.2. Models were trained using categorical
crossentropy loss. The use of one, relatively small hidden layer and dropout help to avoid over-fitting.
This trained model gave an accuracy of 0.86 and a loss of 0.34 on the test data set. For the
prediction of the stance, the gist of the arguments retrieved is concatenated with the objects
separately, given as input, and then predict using the trained model, which results in the same
stance label for both the records. Then the labels are converted to the labels as per the labels
specified in the Task and The final output is inserted into a text file in the format proposed by
the Touché organization.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Evaluation</title>
      <p>The shown architecture in Figure 1 presents our base approach, from which submission is made
for task-2 Touchè 2022. In Table 1, we present the Precision, Recall, and F1 scores for each label
obtained for the test dataset. A single-run submission has been made to the Touchè committee
through the manual labeling of the documents with the help of a human assessor. Our results
seem to point in the right direction, achieving a slight improvement over the baseline with
a quality score of 0.492 mean nDCG@5 and relevance score of 0.582 mean nDCG@5. Our
stance detection model performed better than the baseline model with F1_Macro score of 0.191.
Figure 3 shows our system scores compared with baseline. Our system would have performed
much better if more documents are initially retrieved and using multiple other methods for
argument extraction or using more data for training the model. For stance detection, instead of
considering top argument sentences as the gist of the document, if other techniques are used,
the system would have given better results.</p>
    </sec>
    <sec id="sec-6">
      <title>6. Conclusion</title>
      <p>In this paper, we as Team Olivier Armstrong presented our solution to the shared task 2 of
argument retrieval for answering comparative questions at Touchè 2022. We proposed an
approach for document and argument retrieval, based on several parts of existing systems
that have shown acceptable performance previously. Our major contributions supervised
learning embedded-LSTM model for stance detection and proposed stacked model for argument
extraction is performing better compared to the previously proposed DistilBERT. Both the
trained models, have performed well and have acceptable results. Our proposed approach
outperforms the baseline. In future work, more enhanced and advanced techniques can be used
for better query enrichment, argument extraction, argument quality, and stance detection.
Linguistics, Online and Punta Cana, Dominican Republic, 2021, pp. 267–274. URL: https:
//aclanthology.org/2021.emnlp-demo.31. doi:10.18653/v1/2021.emnlp-demo.31.
[30] Y. Gal, Z. Ghahramani, A theoretically grounded application of dropout in recurrent
neural networks, 2015. URL: https://arxiv.org/abs/1512.05287. doi:10.48550/ARXIV.1512.
05287.
[31] D. P. Kingma, J. Ba, Adam: A method for stochastic optimization, 2014. URL: https://arxiv.
org/abs/1412.6980. doi:10.48550/ARXIV.1412.6980.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>A.</given-names>
            <surname>Bondarenko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Fröbe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kiesel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Syed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Gurcke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Beloucif</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Panchenko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Biemann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Wachsmuth</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hagen</surname>
          </string-name>
          , Overview of Touché 2022:
          <article-title>Argument Retrieval</article-title>
          , in: M.
          <string-name>
            <surname>Hagen</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Verberne</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Macdonald</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Seifert</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Balog</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Nørvåg</surname>
          </string-name>
          , V. Setty (Eds.),
          <source>Advances in Information Retrieval. 44th European Conference on IR Research (ECIR</source>
          <year>2022</year>
          ), Lecture Notes in Computer Science, Springer, Berlin Heidelberg New York,
          <year>2022</year>
          . URL: https://webis.de/publications.html#bondarenko_2022c.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>A.</given-names>
            <surname>Bondarenko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Fröbe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Beloucif</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Gienapp</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Ajjour</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Panchenko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Biemann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Wachsmuth</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hagen</surname>
          </string-name>
          , Overview of Touché 2020:
          <article-title>Argument Retrieval</article-title>
          , in: A.
          <string-name>
            <surname>Arampatzis</surname>
            , E. Kanoulas,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Tsikrika</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Vrochidis</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          <string-name>
            <surname>Joho</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Lioma</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Eickhof</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Névéol</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Cappellato</surname>
          </string-name>
          , N. Ferro (Eds.),
          <source>Experimental IR Meets Multilinguality, Multimodality, and Interaction. 11th International Conference of the CLEF Association (CLEF</source>
          <year>2020</year>
          ), volume
          <volume>12260</volume>
          of Lecture Notes in Computer Science, Springer, Berlin Heidelberg New York,
          <year>2020</year>
          , pp.
          <fpage>384</fpage>
          -
          <lpage>395</lpage>
          . URL: https://link.springer.com/chapter/10.1007/ 978-3-
          <fpage>030</fpage>
          -58219-7_
          <fpage>26</fpage>
          . doi:
          <volume>10</volume>
          .1007/978-3-
          <fpage>030</fpage>
          -58219-7\_
          <fpage>26</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>A.</given-names>
            <surname>Bondarenko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Gienapp</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Fröbe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Beloucif</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Ajjour</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Panchenko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Biemann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Wachsmuth</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hagen</surname>
          </string-name>
          , Overview of Touché 2021:
          <article-title>Argument Retrieval</article-title>
          , in: K.
          <string-name>
            <surname>Candan</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          <string-name>
            <surname>Ionescu</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Goeuriot</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          <string-name>
            <surname>Müller</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Joly</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Maistro</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Piroi</surname>
          </string-name>
          , G. Faggioli, N. Ferro (Eds.),
          <source>Experimental IR Meets Multilinguality, Multimodality, and Interaction. 12th International Conference of the CLEF Association (CLEF</source>
          <year>2021</year>
          ), volume
          <volume>12880</volume>
          of Lecture Notes in Computer Science, Springer, Berlin Heidelberg New York,
          <year>2021</year>
          , pp.
          <fpage>450</fpage>
          -
          <lpage>467</lpage>
          . URL: https://link.springer.com/chapter/10.1007/978-3-
          <fpage>030</fpage>
          -85251-1_
          <fpage>28</fpage>
          . doi:
          <volume>10</volume>
          . 1007/978-3-
          <fpage>030</fpage>
          -85251-1\_
          <fpage>28</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>A.</given-names>
            <surname>Alhamzeh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Bouhaouel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Egyed-Zsigmond</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Mitrović</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Brunie</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Kosch</surname>
          </string-name>
          ,
          <article-title>A stacking approach for cross-domain argument identification</article-title>
          , in: C. Strauss,
          <string-name>
            <given-names>G.</given-names>
            <surname>Kotsis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Tjoa</surname>
          </string-name>
          , I. Khalil (Eds.),
          <source>Database and Expert Systems Applications</source>
          , Springer International Publishing, Cham,
          <year>2021</year>
          , pp.
          <fpage>361</fpage>
          -
          <lpage>373</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hagen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Graßegger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Michel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Tippmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Welsch</surname>
          </string-name>
          ,
          <article-title>Chatnoir: A search engine for the clueweb09 corpus</article-title>
          ,
          <source>in: Proceedings of the 35th International ACM SIGIR Conference on Research and Development in Information Retrieval</source>
          , SIGIR '12,
          <string-name>
            <surname>Association</surname>
          </string-name>
          for Computing Machinery, New York, NY, USA,
          <year>2012</year>
          , p.
          <fpage>1004</fpage>
          . URL: https://doi.org/10.1145/2348283.2348429. doi:
          <volume>10</volume>
          .1145/2348283.2348429.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>G. A.</given-names>
            <surname>Miller</surname>
          </string-name>
          ,
          <article-title>Wordnet: A lexical database for english</article-title>
          ,
          <source>Commun. ACM</source>
          <volume>38</volume>
          (
          <year>1995</year>
          )
          <fpage>39</fpage>
          -
          <lpage>41</lpage>
          . URL: https://doi.org/10.1145/219717.219748. doi:
          <volume>10</volume>
          .1145/219717.219748.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>A.</given-names>
            <surname>Trask</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Michalak</surname>
          </string-name>
          , J. Liu, sense2vec
          <article-title>- a fast and accurate method for word sense disambiguation in neural word embeddings (</article-title>
          <year>2015</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>T.</given-names>
            <surname>Mikolov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Chen</surname>
          </string-name>
          , G. Corrado,
          <string-name>
            <given-names>J.</given-names>
            <surname>Dean</surname>
          </string-name>
          ,
          <article-title>Eficient estimation of word representations in vector space</article-title>
          ,
          <year>2013</year>
          . arXiv:
          <volume>1301</volume>
          .
          <fpage>3781</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>T.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Guestrin</surname>
          </string-name>
          ,
          <article-title>Xgboost: A scalable tree boosting system</article-title>
          ,
          <source>in: Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining</source>
          , KDD '16,
          <string-name>
            <surname>Association</surname>
          </string-name>
          for Computing Machinery, New York, NY, USA,
          <year>2016</year>
          , p.
          <fpage>785</fpage>
          -
          <lpage>794</lpage>
          . URL: https://doi.org/10.1145/2939672.2939785. doi:
          <volume>10</volume>
          .1145/2939672.2939785.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>G.</given-names>
            <surname>Ke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Meng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Finley</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Chen</surname>
          </string-name>
          , W. Ma,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Ye</surname>
          </string-name>
          , T.-Y. Liu,
          <article-title>Lightgbm: A highly eficient gradient boosting decision tree</article-title>
          ,
          <source>in: Proceedings of the 31st International Conference on Neural Information Processing Systems</source>
          , NIPS'17, Curran Associates Inc.,
          <string-name>
            <surname>Red</surname>
            <given-names>Hook</given-names>
          </string-name>
          ,
          <string-name>
            <surname>NY</surname>
          </string-name>
          , USA,
          <year>2017</year>
          , p.
          <fpage>3149</fpage>
          -
          <lpage>3157</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>H.</given-names>
            <surname>Wachsmuth</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Al-Khatib</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Ajjour</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Puschmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Qu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Dorsch</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Morari</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Bevendorf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <article-title>Building an argument search engine for the web</article-title>
          ,
          <source>in: Proceedings of the 4th Workshop on Argument Mining, Association for Computational Linguistics</source>
          , Copenhagen, Denmark,
          <year>2017</year>
          , pp.
          <fpage>49</fpage>
          -
          <lpage>59</lpage>
          . URL: https://aclanthology.org/W17-5106. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>W17</fpage>
          -5106.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>A.</given-names>
            <surname>Chernodub</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Oliynyk</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Heidenreich</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Bondarenko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hagen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Biemann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Panchenko</surname>
          </string-name>
          , TARGER:
          <article-title>Neural argument mining at your fingertips, in: Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics: System Demonstrations, Association for Computational Linguistics</article-title>
          , Florence, Italy,
          <year>2019</year>
          , pp.
          <fpage>195</fpage>
          -
          <lpage>200</lpage>
          . URL: https://aclanthology.org/P19-3031. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>P19</fpage>
          -3031.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>A.</given-names>
            <surname>Alhamzeh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Bouhaouel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Egyed-Zsigmond</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Mitrović</surname>
          </string-name>
          ,
          <article-title>Distilbert-based argumentation retrieval for answering comparative questions</article-title>
          ,
          <source>in: CLEF</source>
          ,
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>C.</given-names>
            <surname>Cortes</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Vapnik</surname>
          </string-name>
          ,
          <article-title>Support-vector networks</article-title>
          ,
          <source>Machine learning 20</source>
          (
          <year>1995</year>
          )
          <fpage>273</fpage>
          -
          <lpage>297</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>V.</given-names>
            <surname>Sanh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Debut</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Chaumond</surname>
          </string-name>
          , T. Wolf,
          <article-title>Distilbert, a distilled version of BERT: smaller, faster, cheaper and lighter</article-title>
          , CoRR abs/
          <year>1910</year>
          .01108 (
          <year>2019</year>
          ). URL: http://arxiv.org/abs/
          <year>1910</year>
          . 01108. arXiv:
          <year>1910</year>
          .01108.
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>S.</given-names>
            <surname>Mohammad</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Kiritchenko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Sobhani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhu</surname>
          </string-name>
          , C. Cherry, SemEval
          <article-title>-2016 task 6: Detecting stance in tweets</article-title>
          ,
          <source>in: Proceedings of the 10th International Workshop on Semantic Evaluation (SemEval-2016)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , San Diego, California,
          <year>2016</year>
          , pp.
          <fpage>31</fpage>
          -
          <lpage>41</lpage>
          . URL: https://aclanthology.org/S16-1003. doi:
          <volume>10</volume>
          .18653/ v1/
          <fpage>S16</fpage>
          -1003.
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>S.</given-names>
            <surname>Gottipati</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Qiu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Zhu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <article-title>Predicting user's political party using ideological stances</article-title>
          , in: A.
          <string-name>
            <surname>Jatowt</surname>
            ,
            <given-names>E.-P.</given-names>
          </string-name>
          <string-name>
            <surname>Lim</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>Ding</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Miura</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Tezuka</surname>
            , G. Dias,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Tanaka</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Flanagin</surname>
            ,
            <given-names>B. T.</given-names>
          </string-name>
          Dai (Eds.),
          <source>Social Informatics</source>
          , Springer International Publishing, Cham,
          <year>2013</year>
          , pp.
          <fpage>177</fpage>
          -
          <lpage>191</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>E.</given-names>
            <surname>Kochkina</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Liakata</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Augenstein</surname>
          </string-name>
          , Turing at semeval
          <article-title>-2017 task 8: Sequential approach to rumour stance classification with branch-lstm</article-title>
          ,
          <source>CoRR abs/1704</source>
          .07221 (
          <year>2017</year>
          ). URL: http://arxiv.org/abs/1704.07221. arXiv:
          <volume>1704</volume>
          .
          <fpage>07221</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>K.</given-names>
            <surname>Dey</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Shrivastava</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Kaushik</surname>
          </string-name>
          ,
          <article-title>Topical stance detection for twitter: A two-phase LSTM model using attention</article-title>
          , CoRR abs/
          <year>1801</year>
          .03032 (
          <year>2018</year>
          ). URL: http://arxiv.org/abs/
          <year>1801</year>
          .03032. arXiv:
          <year>1801</year>
          .03032.
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>A.</given-names>
            <surname>Bondarenko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Ajjour</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Dittmar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Homann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Braslavski</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hagen</surname>
          </string-name>
          ,
          <article-title>Towards Understanding and Answering Comparative Questions</article-title>
          , in: K. S. Candan,
          <string-name>
            <given-names>H.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Akoglu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X. L.</given-names>
            <surname>Dong</surname>
          </string-name>
          , J. Tang (Eds.),
          <source>15th ACM International Conference on Web Search and Data Mining (WSDM</source>
          <year>2022</year>
          ), ACM,
          <year>2022</year>
          , pp.
          <fpage>66</fpage>
          -
          <lpage>74</lpage>
          . URL: https://dl.acm.org/doi/10.1145/3488560. 3498534. doi:
          <volume>10</volume>
          .1145/3488560.3498534.
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>C.</given-names>
            <surname>Stab</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Gurevych</surname>
          </string-name>
          ,
          <article-title>Annotating argument components and relations in persuasive essays</article-title>
          ,
          <source>in: Proceedings of COLING</source>
          <year>2014</year>
          ,
          <source>the 25th International Conference on Computational Linguistics: Technical Papers</source>
          , Dublin City University and Association for Computational Linguistics, Dublin, Ireland,
          <year>2014</year>
          , pp.
          <fpage>1501</fpage>
          -
          <lpage>1510</lpage>
          . URL: https://aclanthology.org/C14-1142.
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>I.</given-names>
            <surname>Habernal</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Gurevych</surname>
          </string-name>
          ,
          <article-title>Argumentation mining in user-generated web discourse</article-title>
          ,
          <source>Computational Linguistics</source>
          <volume>43</volume>
          (
          <year>2017</year>
          )
          <fpage>125</fpage>
          -
          <lpage>179</lpage>
          . URL: https://aclanthology.org/J17-1004. doi:
          <volume>10</volume>
          .1162/COLI_a_
          <fpage>00276</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>A.</given-names>
            <surname>Alhamzeh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Bouhaouel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Egyed-Zsigmond</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Mitrović</surname>
          </string-name>
          ,
          <article-title>Distilbert-based argumentation retrieval for answering comparative questions</article-title>
          , in: G. Faggioli,
          <string-name>
            <given-names>N.</given-names>
            <surname>Ferro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Joly</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Maistro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Piroi</surname>
          </string-name>
          (Eds.), Working Notes of CLEF 2021 -
          <article-title>Conference and Labs of the Evaluation Forum (CLEF 2021), number</article-title>
          2936 in CEUR Workshop Proceedings, Aachen,
          <year>2021</year>
          , pp.
          <fpage>2319</fpage>
          -
          <lpage>2330</lpage>
          . URL: http://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>2936</volume>
          /#paper-
          <fpage>209</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ott</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Du</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Joshi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Levy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zettlemoyer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Stoyanov</surname>
          </string-name>
          ,
          <article-title>Roberta: A robustly optimized BERT pretraining approach</article-title>
          , CoRR abs/
          <year>1907</year>
          .11692 (
          <year>2019</year>
          ). URL: http://arxiv.org/abs/
          <year>1907</year>
          .11692. arXiv:
          <year>1907</year>
          .11692.
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>J.</given-names>
            <surname>Bevendorf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hagen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <article-title>Elastic chatnoir: Search engine for the clueweb and the common crawl</article-title>
          ,
          <source>in: ECIR</source>
          ,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>E.</given-names>
            <surname>Loper</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Bird</surname>
          </string-name>
          ,
          <article-title>Nltk: The natural language toolkit</article-title>
          ,
          <source>CoRR cs.CL/0205028</source>
          (
          <year>2002</year>
          ). URL: http://dblp.uni-trier.de/db/journals/corr/corr0205.html
          <article-title>#cs-CL-0205028.</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <given-names>N.</given-names>
            <surname>Reimers</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Gurevych</surname>
          </string-name>
          ,
          <article-title>Sentence-bert: Sentence embeddings using siamese bert-networks</article-title>
          , CoRR abs/
          <year>1908</year>
          .10084 (
          <year>2019</year>
          ). URL: http://arxiv.org/abs/
          <year>1908</year>
          .10084. arXiv:
          <year>1908</year>
          .10084.
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [28]
          <string-name>
            <given-names>S.</given-names>
            <surname>Gretz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Friedman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Cohen-Karlik</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Toledo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Lahav</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Aharonov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Slonim</surname>
          </string-name>
          ,
          <article-title>A large-scale dataset for argument quality ranking: Construction and analysis</article-title>
          , CoRR abs/
          <year>1911</year>
          .11408 (
          <year>2019</year>
          ). URL: http://arxiv.org/abs/
          <year>1911</year>
          .11408. arXiv:
          <year>1911</year>
          .11408.
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          [29]
          <string-name>
            <given-names>R.</given-names>
            <surname>Bar-Haim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Kantor</surname>
          </string-name>
          , E. Venezian,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Katz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Slonim</surname>
          </string-name>
          ,
          <article-title>Project Debater APIs: Decomposing the AI grand challenge</article-title>
          ,
          <source>in: Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing: System Demonstrations</source>
          , Association for Computational
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>