<!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>Detection of Negation Cues in Spanish: The CLiC-Neg System</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Javier Beltran</string-name>
          <email>javier.beltran@ub.edu</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Monica Gonzalez</string-name>
          <email>monica.gonzalez.manzano@gmail.com</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Universitat de Barcelona</institution>
          ,
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2019</year>
      </pub-date>
      <fpage>352</fpage>
      <lpage>360</lpage>
      <abstract>
        <p>This paper describes the system proposed by the CLiC team at the University of Barcelona for detecting negation cues in Spanish. It applies the Conditional Random Field (CRF), a supervised machine learning method, to the identi cation of negative expressions. After carrying out an error analysis, we tried to improve on the results by the CRF adding vocabulary lists and rules. The results obtained show that, contrary to our expectations, neither adding rules nor creating a lexicon of multiword expressions signi cantly improved the performance of the model. Resumen. Este art culo describe el sistema de deteccion de claves de negacion propuesto por el equipo CLiC de la Universitat de Barcelona. Este sistema utiliza el Conditional Random Field (CRF), un metodo de aprendizaje automatico supervisado, para marcar las expresiones negativas. Tras un analisis pormenorizado de los errores, hemos intentado mejorar los resultados an~adiendo listas de vocabulario y reglas. Los resultados nales demuestran que, en contra de nuestras expectativas, an~adir reglas o diccionarios de expresiones a un modelo de aprendizaje automatico no mejora notablemente la deteccion de la negacion.</p>
      </abstract>
      <kwd-group>
        <kwd>Negation cues</kwd>
        <kwd>Negation detection</kwd>
        <kwd>CRF</kwd>
        <kwd>Supervised ma- chine learning</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Detecting negation is a complex but pressing issue in NLP given the importance
of correctly processing whether a statement is negated or not ([
        <xref ref-type="bibr" rid="ref19">19</xref>
        ]). This is
especially true for tasks like sentiment analysis and areas like biomedicine, in
which detecting medical conditions is crucial for a diagnosis. Negation is also
a central issue for many other tasks such as information extraction and text
mining.
      </p>
      <p>
        One of the rst and most in uential algorithms for negation detection is
NegEx ([
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]), which was developed to identify negation cues in discharge
summaries in English. NegEx is a rule-based algorithm and has been adapted to other
languages (see [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]; [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] for German and [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] for Spanish). It has been the starting
point for other extended algorithms such as ConText ([
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]), pyConTextNLP or
DEEPEN ([
        <xref ref-type="bibr" rid="ref16">16</xref>
        ]).
      </p>
      <p>
        However, in recent years the research community has switched to machine
learning techniques, given that this kind of approach has produced good results
in other NLP related tasks. Morante &amp; Daelemans ([
        <xref ref-type="bibr" rid="ref17">17</xref>
        ]) applied machine
learning to detect negation cues and scope, Goldin &amp; Chapman ([
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]) to detect whether
a term is negated and Morante et al. ([
        <xref ref-type="bibr" rid="ref18">18</xref>
        ]) speci cally to detect negation scope.
All these models have shown promising results and have motivated the research
community to abandon rule-based algorithms in favour of machine-learning
techniques. In the case of Spanish, the two best classi ed models in Task 2 at the
NEGES 2018 Workshop [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] applied these kind of systems. Loharja et al. ([
        <xref ref-type="bibr" rid="ref15">15</xref>
        ])
used Conditional Random Fields (CRF) and Fabregat et al. ([
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]) recurrent
neural networks (RNN). We chose to apply CRF, following [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ], with the intention
of tackling one of its biggest shortcomings: the detection of discontinuous
negation cues. In order to do so, we compared the results obtained by a CRF model
with the results obtained by adding rules and dictionaries as a previous step to
CRF classi cation. We think that our approach is useful for understanding more
fully the limits of machine learning and demonstrating whether combining rules
with this methodology actually improves results.
      </p>
      <p>
        This paper describes our approach to solving subtask A at the NEGES 2019
conference ([
        <xref ref-type="bibr" rid="ref11">11</xref>
        ]). The goal of this subtask is to automatically identify all the
negation cues in a document, including discontinuous negative expressions which,
as we will show in the following sections, is the most challenging aspect in this
task. The organizers provide SFU ReviewSP-NEG [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] as a corpus from which
teams can build their systems. This corpus consists of 400 reviews in 8 di erent
topics, with 25 positive and 25 negative reviews for each topic. The corpus is
divided into training, development and test sets and is presented in the CoNLL
format ([
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]), in which each line contains a token and a column that includes
grammatical information: the lemma, morphological features, and the annotation
regarding negation in the case of the training and development sets.
      </p>
      <p>This paper is organized as follows: Section 2 describes the di erent models
evaluated, all of which are based on a CRF classi er and compared with a
baseline that uses only a dictionary of words. Section 3 discusses the results
obtained, and Section 4 synthesizes our conclusions and de nes lines for future
research.
2</p>
    </sec>
    <sec id="sec-2">
      <title>The CLiC-Neg System</title>
      <p>
        We developed several methods for predicting negation markers from the data
provided. The corpus was already lemmatized and morphologically tagged, and
the negation markers were indicated in the training and development sets. We
translated these to a representation in IOB format ([
        <xref ref-type="bibr" rid="ref21">21</xref>
        ]), which distinguishes
between the beginning and the rest of the cue. Speci cally, the initial item in a
complex negation cue or a simple negative expression is identi ed with the tag
\B" (Begin), the remaining elements in the cue are identi ed with the tag \I"
(Inside) and all the tokens that do not correspond to a negative expression are
tagged as \O" (Outside). This is necessary to predict the cues correctly, as it
allows one to di erentiate several negation cues in the same sentence. Without
the distinction between Begin and Inside, there is no way to say where one cue
ends and another starts. The corpus only speci es which negation cues exist in
the sentences, but they can be translated directly to IOB labels.
2.1
      </p>
      <sec id="sec-2-1">
        <title>Baseline System</title>
        <p>The rst step in developing our model was to design a simple baseline to
compare it with a more sophisticated approach. Therefore, we designed a baseline
that only used a dictionary to detect negation cues. We obtained it from the
SFU-ReviewSP-NEG corpus provided for the task. We rst built a classi er
using logistic regression to detect whether a sentence contains negation. This is a
simpler problem for which the negation cues are accurate predictors. This
system performed successfully at identifying negative sentences and, using only the
lemma and part-of-speech of words as features, obtained an accuracy of 97%.</p>
        <p>We took the 12 most predictive features of the logistic model, that is, the
12 words with the highest coe cient, and kept them in a dictionary to be used
in our baseline. This model only detects simple negation cues, that is, it only
used the tags B and O. Therefore, it was not capable of detecting discontinuous
negation cues. However, even with all these limitations, this model obtained an
F1 score of 73.07% (see Table 1).
2.2</p>
      </sec>
      <sec id="sec-2-2">
        <title>CRF System</title>
        <p>
          The next step was to choose a model to improve our baseline results. In line with
[
          <xref ref-type="bibr" rid="ref15">15</xref>
          ], we developed a system based on a Conditional Random Field (CRF) model.
This approach was the most successful in the NEGES 2018 Workshop. CRF is
a method used for structured prediction, allowing one to predict sequences of
labels e ciently by taking into account the labels of the previous and following
words in a sentence. CRF requires less training data to obtain good results than
other methods for structured predictions (see [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ]), which made it a suitable
choice for our corpus. Agarwal &amp; Yu ([
          <xref ref-type="bibr" rid="ref1">1</xref>
          ]) showed that CRF is very accurate and
achieves high F1 scores when detecting negation cues and the scope of negation
in clinical notes, and Loharja et al. ([
          <xref ref-type="bibr" rid="ref15">15</xref>
          ]) applied it to the detection of negation
cues in Spanish.
        </p>
        <p>
          We implemented our system using Python 3. The CRF model uses the CRF
Suite library (see [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ]), which is available as an extension of the Scikit-Learn
library for machine learning. For the training process, our CRF model used a
set of features based on the methodology in [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ]: each word feature in a sentence
consists of the word and its neighboring words (up to 6 positions before and
up to 1 position after), and the same for the POS and its neighboring POS.
The model was trained on the training part of the SFU ReviewSP-NEG corpus,
using the default parameters of the CRF Suite algorithm. It was evaluated on
the development part and it obtained an average F1 score of 84.18% (see Table 2,
where this model is labeled CRF).
        </p>
        <p>Our CRF system improved the baseline in all of the topics. Note that this
improvement, though, was more signi cant in some areas, such as cars, where
results were almost 12% better than the baseline, but the improvement was
always around 10%. However, some topics, such as mobile phones (90.29%) or
books (85.2%) obtained much better results than areas such as cars (75.86%).
It would be interesting, for future research, to look up the speci cities of each
area to nd linguistic di erences that could justify these results.
2.3</p>
      </sec>
      <sec id="sec-2-3">
        <title>CRF System with rules and list of words</title>
        <p>We observed the false positives and false negatives yielded by the CRF model
described in Section 2.2 when evaluated on the development set, in an attempt
to correct the main sources of error. We came to the conclusion that most errors
could be classi ed in four categories:
1. Errors that were caused because non-negative sentences were detected as
negative: `Ya estaba casi todo, no (B)?'
2. Errors contained in multiword expressions: some multiword expressions that
include negation cues were not correctly identi ed by the system (`a no ser que',
`a excepcion de', `a falta de', etc.).
3. Errors in tagging elements such as `tan', `tanto' and `muy', `mucho',
especially in the case of discontinuous cues.
4. Errors in detecting discontinuous negation cues: one particularity of negation
in Spanish is that we can nd more than one negation cue as part of the
same negative statement.</p>
        <p>In order to improve the CRF model, we applied two di erent approaches: 1)
we introduced a list of rules that could help to identify multiword expressions
and discontinuous cues, a common cause of misclassi cations; 2) we added a
dictionary list of negative expressions to reduce the false negatives that are due
to unseen negation markers in the training dataset.</p>
        <p>Rule-based system and CRF First, we applied a set of rules for correctly
assigning a tag to cases where we observed that the CRF of the previous section
fails. These rules are useful for detecting not only negation cues but also
prevent some words from being erroneously tagged as negation. The rules are the
following:
{ Rule 1: In the sequence \, no?", nothing is marked as a negation cue; this is
a case of not negative sentence even though it uses \no", a word generally
marked as a negation cue in the CRF model in Section 2.2.
{ Rule 2: If \no" is followed by \nada mas" in a distance between 0 and 5
words, neither \no" nor \nada mas" are negation markers.
{ Rule 3: If \ningun" appears in the initial position of a sentence, it is tagged
as \B".
{ Rule 4: If \no", \tampoco" or \sin" are followed by \nada", \ningun" or
\nadie" in a distance between 0 and 10 words, the former word is tagged as
\B" and the latter as \I", thereby being a discontinuous cue.
{ Rule 5: if \aun" or \todav a" are immediately followed by \no", the former
is tagged as \B" and \no" is tagged as \I".
{ Rule 6: \tan" or \tanto" are always tagged as \O". This avoids a common
false positive in the CRF model in Section 2.2.</p>
        <p>Then, we applied the same CRF model presented in Section 2.2 to tag the
remaining words, those not classi ed by the rules. That is, the rules' decisions
prevail over the CRF model in the cases where they are triggered. Results
obtained on the development set for this model are presented in Table 2 under the
name Rules+CRF.</p>
        <p>List of words and CRF Our second approach uses a list of multiword
expressions that were extracted from NewsCom, a corpus developed and annotated by
CLiC at the University of Barcelona containing users comments on news. If a
word in a sentence appears in the list, it is tagged as a negation marker. Then,
we used the same CRF model to tag the remaining words, which were not
detected using the list. This means that the prediction made by the CRF model
only takes into account cases outside the list.</p>
        <p>When ne-tuning this model, we observed that some words in the list also
caused false positives, because they were used in other senses than negation.
Similarly, we increased the list with cases of negative expressions not learned by the
CRF, such as `a no ser',`en absoluto', `en ningun momento' and `sin necesidad de'.
In Table 2 we present the evaluation results for the list of words that yielded the
best score when tested on the development set, under the label List+CRF.
3</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Discussion</title>
      <p>Table 2 summarizes the results of our three di erent approaches (CRF, Rules +
CRF, List + CRF) tested on the development set. Contrary to our expectations,
adding rules worsened the model by 3 points. This means that our rules
introduced error because they were triggered in more cases than they should have
been, misclassi cating some examples. This contradicts the hypothesis that
combining a rule-based method with machine learning techniques can improve the
model by helping it to detect cues that are not correctly identi ed. Similarly,
adding a lexicon of multiword expressions does not improve the scores either,
although the e ect is less signi cant. Despite implementing these approaches in
a controlled way, through the manual observation of the main sources of error
in the predictions, we increased the number of errors rather than reduced them.</p>
      <p>
        Our best model (CRF) was presented in the NEGES 2019 competition ([
        <xref ref-type="bibr" rid="ref11">11</xref>
        ]),
where it was evaluated on their test set, achieving the results shown in Table 3.
It was ranked rst among its competitors, but did not improve on the best score
obtained at the same competition in the previous year by Loharja et al. ([
        <xref ref-type="bibr" rid="ref15">15</xref>
        ]),
whose F1 score is 2% higher than ours. The main di erence is in the feature
set used, which is larger in their case and represents more linguistic phenomena.
For instance, the use of features at the sub-word level such as pre xes or su xes
could help detect cases of morphological negation that are missing from our
model.
In this paper we have described our proposal for the detection of negation cues
based on a CRF classi er, following the approach in [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] for NEGES 2018. The
results obtained show that this supervised learning technique is a promising
approach to building a system that automatically detects negation cues in Spanish,
with an average F1 score of 84.09% on unseen data. However, our expectations
of signi cantly improving on these results by identifying the main sources of
error and readjusting the model have not produced the desired outcome. In fact,
adding rules designed to assign the right tags to some cues worsened the F1
score, and using a dictionary of negative expressions also failed to improve our
results.
      </p>
      <p>For future research, we will analyze the linguistic characteristics of each eld
to re ne our CRF model. We have seen that there are signi cant di erences in
the precision and recall depending on the topic of the comments. It will be of
interest to analyze whether textual di erences, such as register or syntax, have a
meaningful impact on the quality of our model. Additionally, the use of features
at the sub-word level seems a promising approach to the detection of cases of
morphological negation and the reduction of the problems related to learning
from a training corpus with a limited set of negative expressions.</p>
    </sec>
    <sec id="sec-4">
      <title>Acknowledgements</title>
      <p>This work has been carried out in the framework of the MISMIS-Language
project (PGC2018-096212-B-C33), funded by the Ministerio de Ciencia,
Innovacion y Universidades, and CLiC (2017SGR341), funded by the Agencia de
Gestio d'Ajuts Universitaris i de Recerca. Generalitat de Catalunya (AGAUR).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Agarwal</surname>
          </string-name>
          , Shashank, &amp;
          <article-title>Hong Yu: Biomedical negation scope detection with conditional random elds</article-title>
          .
          <source>Journal of the American Medical Informatics Association</source>
          ,
          <volume>17</volume>
          (
          <issue>6</issue>
          ),
          <volume>696</volume>
          {
          <fpage>701</fpage>
          (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Chapman</surname>
          </string-name>
          , Wendy W., et al.:
          <article-title>Extending the NegEx lexicon for multiple languages</article-title>
          .
          <source>Studies in health technology and informatics</source>
          ,
          <volume>192</volume>
          ,
          <issue>677</issue>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Chapman</surname>
          </string-name>
          , Wendy W., et al.:
          <article-title>A simple algorithm for identifying negated ndings and diseases in discharge summaries</article-title>
          .
          <source>Journal of biomedical informatics</source>
          ,
          <volume>34</volume>
          (
          <issue>5</issue>
          ),
          <volume>301</volume>
          {
          <fpage>310</fpage>
          (
          <year>2001</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Chen</surname>
          </string-name>
          , Edwin: Introduction to Conditional Random Fields. http://blog.echen.me/
          <year>2012</year>
          /01/03/introduction-to-conditional-random- elds/.
          <source>Last accessed 20 June 2019</source>
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Costumero</surname>
          </string-name>
          ,
          <string-name>
            <surname>Roberto</surname>
          </string-name>
          , et al.:
          <article-title>An approach to detect negation on medical documents in Spanish</article-title>
          .
          <source>International Conference on Brain Informatics and Health</source>
          . Springer, Cham,
          <volume>366</volume>
          {
          <fpage>375</fpage>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Cotik</surname>
          </string-name>
          ,
          <string-name>
            <surname>Viviana</surname>
          </string-name>
          , et al.:
          <article-title>Negation detection in clinical reports written in German</article-title>
          .
          <source>Proceedings of the Fifth Workshop on Building and Evaluating Resources for Biomedical Text Mining (BioTxtM2016)</source>
          ,
          <volume>115</volume>
          {
          <fpage>124</fpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Fabregat</surname>
          </string-name>
          , H. et al.:
          <article-title>Deep Learning Approach for Negation Cues Detection in Spanish</article-title>
          .
          <source>Proceedings of NEGES 2018. Workshop on Negation in Spanish</source>
          ,
          <volume>43</volume>
          {
          <fpage>48</fpage>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Farkas</surname>
          </string-name>
          ,
          <string-name>
            <surname>Richrd</surname>
          </string-name>
          , et al.:
          <article-title>The CoNLL-2010 shared task: learning to detect hedges and their scope in natural language text</article-title>
          .
          <source>Proceedings of the Fourteenth Conference on Computational Natural Language Learning</source>
          , Shared Task,
          <article-title>Association for Computational Linguistics (</article-title>
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Goldin</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Wendy W. Chapman</surname>
          </string-name>
          :
          <article-title>Learning to detect negation with notin medical texts</article-title>
          .
          <source>Proc Workshop on Text Analysis and Search for Bioinformatics</source>
          , ACM SIGIR (
          <year>2003</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Harkema</surname>
          </string-name>
          ,
          <string-name>
            <surname>Henk</surname>
          </string-name>
          , et al.:
          <article-title>ConText: an algorithm for determining negation, experiencer, and temporal status from clinical reports</article-title>
          .
          <source>Journal of biomedical informatics</source>
          ,
          <volume>42</volume>
          (
          <issue>5</issue>
          ),
          <volume>839</volume>
          {
          <fpage>851</fpage>
          (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Jimenez-Zafra</surname>
          </string-name>
          ,
          <article-title>Salud Mar a and Cruz D az, Noa P. and Morante, Roser and Mart n-Valdivia, Mar a Teresa: NEGES 2019 Task: Negation in Spanish</article-title>
          .
          <source>Proceedings of the Iberian Languages Evaluation Forum (IberLEF</source>
          <year>2019</year>
          ), CEUR Workshop Proceedings, Bilbao, Spain,
          <string-name>
            <surname>CEUR-WS</surname>
          </string-name>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Jimenez-Zafra</surname>
          </string-name>
          ,
          <article-title>Salud Mar a and D az, Noa P Cruz and Morante, Roser and Mart nValdivia</article-title>
          ,
          <source>Mar a Teresa: NEGES 2018: Workshop on Negation in Spanish. Procesamiento del Lenguaje Natural</source>
          ,
          <volume>62</volume>
          , 21{
          <fpage>28</fpage>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Jimenez-Zafra</surname>
            ,
            <given-names>S. M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Taule</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mart</surname>
          </string-name>
          n Valdivia, M.T.,
          <string-name>
            <surname>Urea-Lpez</surname>
            ,
            <given-names>L.A.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Mart</surname>
            ,
            <given-names>M.A.</given-names>
          </string-name>
          :
          <article-title>SFU Review SP-NEG: a Spanish-corpus annotated with negation for sentiment analysis. A typology of negation patterns</article-title>
          .
          <source>Language Resources and Evaluation</source>
          ,
          <volume>52</volume>
          (
          <issue>2</issue>
          ),
          <volume>533</volume>
          {
          <fpage>569</fpage>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>La</surname>
            <given-names>erty</given-names>
          </string-name>
          , John,
          <string-name>
            <given-names>Andrew McCallum</given-names>
            &amp;
            <surname>Fernando CN Pereira: Conditional Random Fields</surname>
          </string-name>
          :
          <article-title>Probabilistic models for segmenting and labeling sequence data</article-title>
          .
          <source>Proceedings of the 18th International Conference on Machine Learning 2001 (ICML</source>
          <year>2001</year>
          ),
          <volume>282</volume>
          {
          <fpage>289</fpage>
          (
          <year>2001</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Loharja</surname>
          </string-name>
          , Henry, Llu s Padro &amp;
          <article-title>Jorge Turmo Borras: Negation cues detection using CRF on Spanish product review texts</article-title>
          .
          <source>NEGES</source>
          <year>2018</year>
          : Workshop on Negation in Spanish: Seville,
          <source>Spain: September 19-21</source>
          ,
          <year>2018</year>
          : proceedings book,
          <volume>49</volume>
          {
          <fpage>54</fpage>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Mehrabi</surname>
          </string-name>
          ,
          <string-name>
            <surname>Saeed</surname>
          </string-name>
          , et al.:
          <article-title>DEEPEN: A negation detection system for clinical text incorporating dependency relation into NegEx</article-title>
          .
          <source>Journal of biomedical informatics</source>
          ,
          <volume>54</volume>
          , 213{
          <fpage>219</fpage>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Morante</surname>
          </string-name>
          , Roser &amp; Walter
          <string-name>
            <surname>Daelemans</surname>
          </string-name>
          :
          <article-title>A metalearning approach to processing the scope of negation</article-title>
          .
          <source>Proceedings of the Thirteenth Conference on Computational Natural Language Learning, Association for Computational Linguistics</source>
          ,
          <volume>21</volume>
          {
          <fpage>29</fpage>
          (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Morante</surname>
            , Roser,
            <given-names>Sarah</given-names>
          </string-name>
          <string-name>
            <surname>Schrauwen</surname>
          </string-name>
          &amp;
          <article-title>Walter Daelemans: Corpus-based approaches to processing the scope of negation cues: an evaluation of the state of the art</article-title>
          .
          <source>Proceedings of the Ninth International Conference on Computational Semantics, Association for Computational Linguistics</source>
          ,
          <volume>350</volume>
          {
          <fpage>354</fpage>
          (
          <year>2011</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Morante</surname>
          </string-name>
          , Roser &amp; Caroline Sporleder:
          <article-title>Modality and Negation: An Introduction to the Special Issue</article-title>
          .
          <source>Computational Linguistics</source>
          ,
          <volume>38</volume>
          (
          <issue>2</issue>
          ),
          <volume>223</volume>
          {
          <fpage>260</fpage>
          (
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Prateek</surname>
          </string-name>
          ,
          <article-title>Joshi: Why Do We Need Conditional Random Fields?</article-title>
          . https://prateekvjoshi.com/
          <year>2013</year>
          /02/23/why-do
          <article-title>-we-need-conditional-random- elds/</article-title>
          .
          <source>Last accessed 20 June 2019</source>
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <surname>Ramshaw</surname>
            ,
            <given-names>Lance A.</given-names>
          </string-name>
          , &amp; Mitchell P. Marcus:
          <article-title>Text chunking using transformationbased learning</article-title>
          .
          <source>Natural language processing using very large corpora</source>
          , Springer, Dordrecht,
          <volume>157</volume>
          {
          <fpage>176</fpage>
          (
          <year>1999</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>