<!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>
      <journal-title-group>
        <journal-title>Bucharest, Romania
" lukas.gienapp@uni-leipzig.de (L. Gienapp)</journal-title>
      </journal-title-group>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>Quality-aware Argument Retrieval with Topical Clustering</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Lukas Gienapp</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Leipzig University</institution>
          ,
          <addr-line>Leipzig, 04109</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2021</year>
      </pub-date>
      <volume>000</volume>
      <fpage>0</fpage>
      <lpage>0001</lpage>
      <abstract>
        <p>We present a specialized approach to argument retrieval which combines both the general argumentative quality of texts, as well as the latent semantic (topic-)space of the document collection as boost factors to a general-purpose retrieval model to address the specific domain requirements of argument search. This setup aims to satisfy our three hypothesized aspects of an argumentative information need: quality-aware result ranking, near-complete topical coverage, and text proximity to the query.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;information retrieval</kwd>
        <kwd>argument retrieval</kwd>
        <kwd>argument quality</kwd>
        <kwd>latent semantic clustering</kwd>
        <kwd>CEUR-WS</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>Searching the web, where information on virtually any topic can be accessed, has become a
highly influential factor in everyday decision making. However, in many cases, an information
need can be presumed that is addressed best not by single correct answer, or an unfiltered list
of similar documents, but by a faceted view of diferent aspects of the search topic at hand. To
this end, traditional approaches to web search only serve a diminished purpose, hence why
specialized retrieval systems for this domain have to be developed, generating insights that
support the user in forming well-justified opinions.</p>
      <p>
        The first task of the Touché Shared Task Bondarenko et al. [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] supports such everyday decision
making by incentivizing the development of specialized systems for argument retrieval for
controversial questions. The aim of such systems is to retrieve argumentative texts relevant
to controversial topics of general societal interest, which should be useful in conversations,
debates, or forming an individuals’ opinion on the topic at hand. In this paper, we contribute
such a retrieval system, based on three hypothesized aspects of an argumentative information
need: quality-aware result ranking, near-complete topical coverage, and text proximity to the
query.
      </p>
      <p>In contrast to established general-purpose retrieval models, our proposed method therefore
does not only rank by term proximity to the query using the general-purpose Dirichlet language
model for retrieval, but additionally takes into account the argumentative quality of text snippets,
as estimated using a support vector regression model, and the latent semantic space of the
document collection, calculated by performing clustering on phrase embeddings. In Section 2,
we review existing approaches to argument retrieval, and derive our three information need
facets from related work. In Section 3, we introduce our method and provide detailed information
on each of the components of our argument retrieval model. Section 4 provides first insight
into the models’ performance, while Section 5 gives concluding remarks.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related Work</title>
      <p>
        This section provides an overview of work that focuses specifically on the retrieval and ranking
of argumentative documents. Throughout, we assume a static document collection, namely the
args.me corpus [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], comprised of 387,740 arguments crawled from online debate portals. Based
on this, Section 2.1 describes several existing retrieval approaches. Section 2.2 reviews diferent
viewpoints on what an argument search system should achieve, influencing the design decision
made throughout this paper.
      </p>
      <sec id="sec-2-1">
        <title>2.1. Argument Retrieval Models</title>
        <p>
          Bondarenko et al. [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ] identify three central components of an argument retrieval system, based
on a review of systems submitted to the Touché Shared Task: (1) an initial retrieval strategy;
(2) an augmentation component, where results are extended by either expanding the query set,
or directly based on documents features in the initially retrieved document set; (3) a (re)ranking
component based on a primary document feature, influencing the final document scoring. We
structure the literature review around each of these components, drawing inspiration for our
own system at each step.
        </p>
        <p>
          Initial Retrieval. As one of the first publicly available systems focusing on argument search,
Wachsmuth et al. [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ] present Args1, implementing a fulltext search engine based on the args.me
corpus utilizing the Okapi BM25 retrieval model [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ]. In addition to BM25, Potthast et al. [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ]
evaluate three other general retrieval models for argument search, taking argument quality
into account besides relevance, and find the DirichletLM model [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] performing best on average.
This is corroborated by Bondarenko et al. [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ], where the stock DirichletLM baseline system
placed among the top systems evaluated. Dumani and Schenkel [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] use a parameter-free
divergence-from-randomness model for initial retrieval in their pipeline, yet they do not provide
an ablative evaluation characterizing the baseline performance of this step only. Beyond
traditional retrieval models, employing large transformer-based language models for argument
search has been successfully demonstrated by Akiki and Potthast [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ], who use 512-dimensional
phrase embeddings produced by the Universal Sentence Encoder (USE) [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ] to calculate query
proximity. Beyond argument search, the USE has been applied to general information retrieval
[
          <xref ref-type="bibr" rid="ref11">11</xref>
          ] and numerous NLP tasks [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ].
        </p>
        <p>
          1www.args.me. Unless otherwise noted, all URLs in this paper have been last accessed on June 29, 2021 and
were archived in the Wayback Machine
Result Augmentation. The result augmentation step aims at adding arguments to the result
set that were not identified by the initial retrieval. One particular method of achieving such
augmentation, first applied by Boltuzic and Snajder [12], is clustering—the general idea being
to include all arguments that are members of the same (precomputed) clusters as documents
already present in the initial results. Dumani and Schenkel [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] exploit the dual structure of
the args.me corpus and group together arguments that share an identical claim. A notable
shortcoming here is the strict identity of conclusions as clustering criterion, possibly leading
to very small groupings. Dumani et al. [13] improve on this, utilizing phrase embeddings as
calculated by models like Sentence-BERT [14], or InferSent [15] to project argument snippets
into a clusterable vector space. Akiki and Potthast [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] follow a similar approach, using KMeans
clustering on USE-embeddings to obtain semantic clusters of arguments in the args.me corpus.
Reranking. Since the result augmentation introduces a heap of previously not considered
arguments into the result set, a reranking is warranted to expand the scoring beyond intial query
similarity. In one of the top-scoring system at the first Touché Shared Task, Bundesmann et al.
[16] propose argument quality as reranking feature, predicted using support vector regression.
Other proposed reranking features include sentiment scoring [17], author credibility [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ], and
readability [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ], but all to only limited success.
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>2.2. Considerations on the goals of Argument Search</title>
        <p>
          To provide a motivation for the design choices made in Section 3, we consider diferent aspects
of what a useful argument search system should provide. The underlying assumption here is
that is system is used for conversational argument search: it is to provide assistance to users
collecting argumentative evidence on various societal topics, to either provide debate assistance,
or fulfill a personal informational need [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ]. Besides this general goal, more specific requirements
are placed on an argument search system that extend beyond general information retrieval.
Following the propositions made by Wachsmuth et al. [18] and [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ], Potthast et al. [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ] argue that
the evaluation of argument retrieval models should not only incorporate the classic evaluation
criterion of relevance, but also include argument quality as additional evaluation feature, as
diferences between relevance-oriented efectiveness and quality-oriented efectiveness can be
observed. This in turn means that argument search should maximize not only the relevance,
but also the argumentative quality of its results.
        </p>
        <p>Another issue which is partly raised by Boltuzic and Snajder [12] is the wording of
argumentative text. They observe language variability, i.e. the same abstract argument can be
expressed in nearly infinitely many ways, which may lead to shortcomings for the retrieval
quality of term-based ranking models. The authors tackle this issue by applying semantic
clustering. Bundesmann et al. [16] further comment on result diversity, and integrate a measure
of heterogeneity to increase the diversity of viewpoints within their top-ranked results. This
diversity can be related to a cluster-based retrieval as well, as one cluster may contain many
diferent and diverse viewpoints for a particular topic. Therefore, a topic-aware ranking model
might also yield improved results.</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Methodological Approach</title>
      <p>
        Our method for argument retrieval is composed of three components, integrating the notions
of (1) textual relevance (Section 3.1), i.e., the relevance as indicated by a term-frequency based
retrieval model; (2) topical relevance (Section 3.2), i.e., the relevance as indicated by a semantic
space, independent of term occurrences; and (3) argumentative relevance (Section 3.3), i.e., the
argumentative quality of the results. This is similar to the three steps described by Bondarenko
et al. [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]: textual relevance is akin to the initial retrieval, topical relevance relates to the result
augmentation step, and argumentative relevance can be seen as reranking feature. However,
the critical diference here is that we do not model these components as successive steps in a
retrieval pipeline, but rather as complementary parts of a final relevance score.
      </p>
      <sec id="sec-3-1">
        <title>3.1. Textual Component</title>
        <p>
          The textual component is modeled by a classic and domain-independent information retrieval
model relying on term statistics of documents to infer the proximity, i.e., potential relevance, of
each document to the text query. Given the popularity and very favorable performance of the
DirichletLM retrieval model in the prior Touché Shared Task, we rely on it to calculate textual
relevance scores. We use the Lucene implementation of the DirichletLM model2, which closely
follows the original paper [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ].
        </p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Topical Component</title>
        <p>
          We embed all argument conclusions in the document collection into a 512-dimensional vector
space using the Universal Sentence Encoder [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ]. We choose this embedder over other phrase
embedding models due to its widespread application, high usability, favorable performance,
and previous usage in the field of argument search [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ]. While Akiki and Potthast [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] use
USE-embeddings of the complete argument texts to perform exhaustive nearest-neighbor
lookup for individual arguments at retrieval time, we instead utilize the embedding vectors to
perform KMeans-Clustering on only the arguments’ conclusions, to allow for coherent clusters
of topically similar arguments. The feasibility of this approach has been demonstrated by
Akiki and Potthast [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ], who conduct a similar clustering approach to verify the accuracy of
their embedding space and find that the clusters obtained are both coherent (syntactically and
semantically) and meaningful (encompassing specific topics). After clustering the conclusion
space with  = 300 (a parameter choice that yielded accurate results upon manual review) each
argument is associated with its clusters’ centroid. Each argument is scored by cosine similarity
between query and its cluster centroid. The centroid is chosen over the individual proximity of
arguments to equally boost the ranking score of all arguments in a cluster/topic, which enables
to rank arguments within a topic by a secondary feature, such as quality.
        </p>
      </sec>
      <sec id="sec-3-3">
        <title>3.3. Argumentative Component</title>
        <p>
          We follow the considerations of Bundesmann et al. [16] who predict argument quality using
a support vector regression (SVR) model. While they note that reliable quality prediction
is dificulty to achieve, the overall retrieval efectiveness achievable by incorporating such
2https://lucene.apache.org/core/8_7_0/core/org/apache/lucene/search/similarities/LMDirichletSimilarity.html
predictions is still suficiently high. To improve on their method, we introduce a classification
step prior to the quality prediction, which decides whether a given text span is argumentative or
not; non-arguments are then automatically assigned the minimal quality score, while arguments
are passed on to the predictor to infer a rating for argumentative quality. We train both the
argumentative classification and the quality prediction model using the Webis ArgQuality 20
dataset [19]. It contains argumentative quality ratings and a binary classification whether
a text is an argument or not for a subset of 1,271 arguments from the args.me corpus. We
rescale quality scores to a range of [
          <xref ref-type="bibr" rid="ref1">0, 1</xref>
          ], and convert arguments to lowercase, remove english
stopwords and vectorize them as TF/IDF vectors.
        </p>
        <p>First, a support vector machine (SVM) is used for a binary classification to determine if a
sample is an argument or not. Then, valid arguments receive their quality rating as estimated by
a SVR model. The classification is trained on the complete (binary label) data, while the SVR is
trained only the argument subset. Both models are evaluated with 10-fold cross-validation. The
SVM classificator is achieves F-1 score of 0.88. The SVR regression model achieves a mean square
error (MSE) of 0.1949. Both models can thus be deemed reasonably accurate. The combined
model is then applied to predict a quality score for each premise contained in the args.me
corpus. Texts classified as non-arguments receive a score of 0, while others receive their quality
prediction as given in the 0-1 range.</p>
      </sec>
      <sec id="sec-3-4">
        <title>3.4. Final Scoring</title>
        <p>
          Given the three components of our retrieval system described above, the final score (,) of a
document  for a query  is given by
(,) = (, ) · (1 +  · (, )) · (1 +  · ())
(1)
where (, ) is the initial document relevance score as produced by the DirichletLM model,
(, ) being the cosine distance between the query embedding and the topical cluster centroid
 is associated with, and () is the predicted quality score for  (independent of the query).
, are weighting factors to fine-tune the model. Both (, ) and () are in [
          <xref ref-type="bibr" rid="ref1">0, 1</xref>
          ] and thus
boost the initial score, but never decrease it.
        </p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Evaluation</title>
      <p>We implement the described method as an Elasticsearch-based retrieval system. Quality ratings
as well as cluster centroids are pre-computed for eficient retrieval. At retrieval time, all
documents in the collection are scored by DirichletLM, and for all the cosine distance from
centroid to USE-embedded query is calculated. Documents are then ranked by the scoring
formula in Equation 1. We submit five runs for evaluation, difering in the applied weighting
factors. All setups are summarized in Table 1. The first three weighting schemes are used to
test if a higher, lower or equal influence of topical relevance and quality ratings are beneficial.
With the last two setups, we fix the initial relevance score at 1 to investigate whether the topical
relevance alone (since it is query-dependent, as opposed to quality), can provide meaningful
and accurate results, without depending on a term-frequency based model at all. To generate
and submit runs for Touché 2021, the Tira platform was used [20].</p>
      <p>The first three runs, enabling the Dirichlet-based textual component, show strong overall
performance. For relevance-based evaluation, the added topical component yields a net increase
in ranking performance compared to the Dirichlet-only Touché baseline. The ranking
performance also correlates with parameter choice for , as higher value results in higher nDCG@5.
Overall, for relevance, our best approach places 9th among teams. For quality-based evaluation,
the same trend can be observed: the quality-based scoring factor has tremendous impact on
improving the argumentative quality of the results. Once again, the higher choice of  results
in the higher ranking performance, however, only in conjunction with a high value of  as
well. In terms of quality evaluation, the three approaches place first among all runs submitted
to Touché. The two-stage prediction model can thus be deemed highly efective.</p>
      <p>The latter two approaches, where the Dirichlet-based textual component has been turned of
turn out to be unusable in practice. With an nDCG score of zero (for relevance), they provide
efectively no use to a user. One possible reason for this is that the embedding space was
constructed on arguments’ conclusions only, which is not suficient to ensure relevant search
results. However, regarding argumentative quality, the system yields acceptable results, too.</p>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion</title>
      <p>We proposed a new approach to argument retrieval, combining several parts of existing systems
that have shown favorable performance prior. The retrieval model is centered around three
components: a classic term-frequency-based retrieval model (DirichletLM) and two boosting
factors, incorporating topical relevance as indicated by a semantic clustering of the underlying
data, and a quality prediction model. The approach can be deemed successful. For both relevance
and quality as evaluation dimensions, the system yields useful results. For quality, it places
highest among the participants of this years’ Touché lab. The evaluation has also shown room
for future improvements: specifically the topical component performs sub-par, and needs to be
revisited. Extending the embeddings to not only include conclusions, but also premises, maybe
even in terms of a dual embedding space promises better results. Parameter fine-tuning for the
Dirichlet model also promises an increase in ranking performance and will be made possible by
the increased availability of relevance judgements from this years’ iteration of Touché.
retrieval, in: A. Çelikyilmaz, T. Wen (Eds.), Proceedings of the 58th Annual Meeting of the
Association for Computational Linguistics: System Demonstrations, ACL 2020, Online,
July 5-10, 2020, Association for Computational Linguistics, 2020, pp. 87–94.
[12] F. Boltuzic, J. Snajder, Identifying prominent arguments in online debates using semantic
textual similarity, in: Proceedings of the 2nd Workshop on Argumentation Mining,
ArgMining@HLT-NAACL 2015, June 4, 2015, Denver, Colorado, USA, The Association for
Computational Linguistics, 2015, pp. 110–115. doi:10.3115/v1/w15-0514.
[13] L. Dumani, C. K. Kreutz, M. Biertz, A. Witry, R. Schenkel, Segmenting and clustering noisy
arguments, in: D. Trabold, P. Welke, N. Piatkowski (Eds.), Proceedings of the Conference
"Lernen, Wissen, Daten, Analysen", Online, September 9-11, 2020, volume 2738 of CEUR
Workshop Proceedings, CEUR-WS.org, 2020, pp. 23–34.
[14] N. Reimers, I. Gurevych, Sentence-bert: Sentence embeddings using siamese bert-networks,
in: K. Inui, J. Jiang, V. Ng, X. Wan (Eds.), Proceedings of the 2019 Conference on Empirical
Methods in Natural Language Processing and the 9th International Joint Conference on
Natural Language Processing, EMNLP-IJCNLP 2019, Hong Kong, China, November 3-7,
2019, Association for Computational Linguistics, 2019, pp. 3980–3990. doi:10.18653/v1/
D19-1410.
[15] A. Conneau, D. Kiela, H. Schwenk, L. Barrault, A. Bordes, Supervised learning of universal
sentence representations from natural language inference data, in: M. Palmer, R. Hwa,
S. Riedel (Eds.), Proceedings of the 2017 Conference on Empirical Methods in Natural
Language Processing, EMNLP 2017, Copenhagen, Denmark, September 9-11, 2017, Association
for Computational Linguistics, 2017, pp. 670–680. doi:10.18653/v1/d17-1070.
[16] M. Bundesmann, L. Christ, M. Richter, Creating an argument search engine for online
debates, in: L. Cappellato, C. Eickhof, N. Ferro, A. Névéol (Eds.), Working Notes of CLEF
2020 - Conference and Labs of the Evaluation Forum, Thessaloniki, Greece, September
22-25, 2020, volume 2696 of CEUR Workshop Proceedings, CEUR-WS.org, 2020.
[17] C. Staudte, L. Lange, Sentarg: A hybrid doc2vec/dph model with sentiment analysis
refinement, in: L. Cappellato, C. Eickhof, N. Ferro, A. Névéol (Eds.), Working Notes
of CLEF 2020 - Conference and Labs of the Evaluation Forum, Thessaloniki, Greece,
September 22-25, 2020, volume 2696 of CEUR Workshop Proceedings, CEUR-WS.org, 2020.
[18] H. Wachsmuth, N. Naderi, I. Habernal, Y. Hou, G. Hirst, I. Gurevych, B. Stein,
Argumentation quality assessment: Theory vs. practice, in: R. Barzilay, M. Kan (Eds.), Proceedings of
the 55th Annual Meeting of the Association for Computational Linguistics, ACL 2017,
Vancouver, Canada, July 30 - August 4, Volume 2: Short Papers, Association for Computational
Linguistics, 2017, pp. 250–255. doi:10.18653/v1/P17-2039.
[19] L. Gienapp, B. Stein, M. Hagen, M. Potthast, Eficient pairwise annotation of argument
quality, in: D. Jurafsky, J. Chai, N. Schluter, J. R. Tetreault (Eds.), Proceedings of the 58th
Annual Meeting of the Association for Computational Linguistics, ACL 2020, Online, July
5-10, 2020, Association for Computational Linguistics, 2020, pp. 5772–5781.
[20] M. Potthast, T. Gollub, M. Wiegmann, B. Stein, TIRA Integrated Research Architecture,
in: N. Ferro, C. Peters (Eds.), Information Retrieval Evaluation in a Changing World, The
Information Retrieval Series, Springer, Berlin Heidelberg New York, 2019. doi:10.1007/
978-3-030-22948-1\_5.</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>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: D.
          <string-name>
            <surname>Hiemstra</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.-F. Moens</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Mothe</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Perego</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Potthast</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Sebastiani</surname>
          </string-name>
          (Eds.),
          <source>Advances in Information Retrieval. 43rd European Conference on IR Research (ECIR</source>
          <year>2021</year>
          ), volume
          <volume>12036</volume>
          of Lecture Notes in Computer Science, Springer, Berlin Heidelberg New York,
          <year>2021</year>
          , pp.
          <fpage>574</fpage>
          -
          <lpage>582</lpage>
          . doi:
          <volume>10</volume>
          .1007/978-3-
          <fpage>030</fpage>
          -72240-1\_
          <fpage>67</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Ajjour</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Wachsmuth</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kiesel</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>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <article-title>Data Acquisition for Argument Search: The args</article-title>
          .me corpus, in: C. Benzmüller, H. Stuckenschmidt (Eds.),
          <source>42nd German Conference on Artificial Intelligence (KI</source>
          <year>2019</year>
          ), Springer, Berlin Heidelberg New York,
          <year>2019</year>
          , pp.
          <fpage>48</fpage>
          -
          <lpage>59</lpage>
          . doi:
          <volume>10</volume>
          .1007/978-3-
          <fpage>030</fpage>
          -30179-8\_4.
        </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>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: L.
          <string-name>
            <surname>Cappellato</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Eickhof</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Ferro</surname>
            ,
            <given-names>A</given-names>
          </string-name>
          . Névéol (Eds.),
          <source>Working Notes Papers of the CLEF 2020 Evaluation Labs</source>
          , volume
          <volume>2696</volume>
          <source>of CEUR Workshop Proceedings</source>
          ,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <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>
          , in: K. Ashley,
          <string-name>
            <given-names>C.</given-names>
            <surname>Cardie</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Green</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Gurevych</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I.</given-names>
            <surname>Habernal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Litman</surname>
          </string-name>
          , G. Petasis,
          <string-name>
            <given-names>C.</given-names>
            <surname>Reed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Slonim</surname>
          </string-name>
          , V. Walker (Eds.), 4th Workshop on Argument Mining (ArgMining
          <year>2017</year>
          )
          <string-name>
            <surname>at</surname>
            <given-names>EMNLP</given-names>
          </string-name>
          , Association for Computational Linguistics,
          <year>2017</year>
          , pp.
          <fpage>49</fpage>
          -
          <lpage>59</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>S. E.</given-names>
            <surname>Robertson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Walker</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hancock-Beaulieu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Gatford</surname>
          </string-name>
          , Okapi at TREC3, in: D. K. Harman (Ed.),
          <source>Proceedings of The Third Text REtrieval Conference</source>
          , TREC 1994, Gaithersburg, Maryland, USA, November 2-
          <issue>4</issue>
          ,
          <year>1994</year>
          , volume
          <volume>500</volume>
          -225 of NIST Special Publication,
          <source>National Institute of Standards and Technology (NIST)</source>
          ,
          <year>1994</year>
          , pp.
          <fpage>109</fpage>
          -
          <lpage>126</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Gienapp</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Euchner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Heilenkötter</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Weidmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Wachsmuth</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>
          , Argument Search: Assessing Argument Relevance, in: 42nd
          <source>International ACM Conference on Research and Development in Information Retrieval (SIGIR</source>
          <year>2019</year>
          ), ACM,
          <year>2019</year>
          . doi:
          <volume>10</volume>
          .1145/3331184.3331327.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>C.</given-names>
            <surname>Zhai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. D.</given-names>
            <surname>Laferty</surname>
          </string-name>
          ,
          <article-title>A study of smoothing methods for language models applied to information retrieval</article-title>
          ,
          <source>ACM Trans. Inf. Syst</source>
          .
          <volume>22</volume>
          (
          <year>2004</year>
          )
          <fpage>179</fpage>
          -
          <lpage>214</lpage>
          . doi:
          <volume>10</volume>
          .1145/984321. 984322.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>L.</given-names>
            <surname>Dumani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Schenkel</surname>
          </string-name>
          ,
          <article-title>Quality-aware ranking of arguments</article-title>
          , in: M.
          <string-name>
            <surname>d'Aquin</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Dietze</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Hauf</surname>
            , E. Curry,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Cudré-Mauroux</surname>
          </string-name>
          (Eds.),
          <source>CIKM '20: The 29th ACM International Conference on Information and Knowledge Management</source>
          , Virtual Event, Ireland,
          <source>October 19-23</source>
          ,
          <year>2020</year>
          , ACM,
          <year>2020</year>
          , pp.
          <fpage>335</fpage>
          -
          <lpage>344</lpage>
          . doi:
          <volume>10</volume>
          .1145/3340531.3411960.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>C.</given-names>
            <surname>Akiki</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <article-title>Exploring Argument Retrieval with Transformers</article-title>
          , in: L.
          <string-name>
            <surname>Cappellato</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Eickhof</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Ferro</surname>
            ,
            <given-names>A</given-names>
          </string-name>
          . Névéol (Eds.),
          <source>Working Notes Papers of the CLEF 2020 Evaluation Labs</source>
          , volume
          <volume>2696</volume>
          ,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>D.</given-names>
            <surname>Cer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Kong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Hua</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Limtiaco</surname>
          </string-name>
          ,
          <string-name>
            R. S. John,
            <given-names>N.</given-names>
            <surname>Constant</surname>
          </string-name>
          , M. GuajardoCespedes, S. Yuan,
          <string-name>
            <given-names>C.</given-names>
            <surname>Tar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Sung</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Strope</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Kurzweil</surname>
          </string-name>
          , Universal sentence encoder, CoRR abs/
          <year>1803</year>
          .11175 (
          <year>2018</year>
          ). URL: http://arxiv.org/abs/
          <year>1803</year>
          .11175. arXiv:
          <year>1803</year>
          .11175.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Cer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ahmad</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Guo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Law</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Constant</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. H.</given-names>
            <surname>Ábrego</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Yuan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Tar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Sung</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Strope</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Kurzweil</surname>
          </string-name>
          ,
          <article-title>Multilingual universal sentence encoder for semantic</article-title>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>