<!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>CEN@Amrita FIRE 2016: Context based Character Embeddings for Entity Extraction in Code-Mixed Text</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Srinidhi Skanda V</string-name>
          <email>skanda9051@gmail.com</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Veena P V</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Shivkaran Singh</string-name>
          <email>shivkaran.ssokhey@gmail.com</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Anand Kumar M</string-name>
          <email>m_anandkumar@cb.amrita.edu</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Remmiya Devi G</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Soman K P</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Center for Computational, Engineering and Networking(CEN), Amrita School of Engineering</institution>
          ,
          <addr-line>Coimbatore</addr-line>
          ,
          <institution>Amrita Vishwa Vidyapeetham, Amrita University</institution>
          ,
          <country country="IN">India</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Centre for Computational, Engineering and Networking(CEN), Amrita School of Engineering</institution>
          ,
          <addr-line>Coimbatore., Amrita Vishwa Vidyapeetham</addr-line>
          ,
          <institution>Amrita University</institution>
          ,
          <country country="IN">India</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper presents the working methodology and results on Code Mix Entity Extraction in Indian Languages (CMEE-IL) shared the task of FIRE-2016. The aim of the task is to identify various entities such as a person, organization, movie and location names in a given code-mixed tweets. The tweets in code mix are written in English mixed with Hindi or Tamil. In this work, Entity Extraction system is implemented for both Hindi-English and Tamil-English code-mix tweets. The system employs context based character embedding features to train Support Vector Machine (SVM) classifier. The training data was tokenized such that each line containing a single word. These words were further split into characters. Embedding vectors of these characters are appended with the I-O-B tags and used for training the system. During the testing phase, we use context embedding features to predict the entity tags for characters in test data. We observed that the cross-validation accuracy using character embedding gave better results for Hindi-English twitter dataset compare to TamilEnglish twitter dataset.</p>
      </abstract>
      <kwd-group>
        <kwd>Named-entity recognition</kwd>
        <kwd>Information extraction</kwd>
        <kwd>Code-Mixed Support vector machine (SVM)</kwd>
        <kwd>Word embedding</kwd>
        <kwd>Context-based character embedding</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>• Information Retrieval ➝ Retrieval tasks and goals ➝</p>
    </sec>
    <sec id="sec-2">
      <title>Information Extraction • Machine Learning ➝ Machine Learning approaches ➝ Kernel Methods ➝ Support Vector Machines</title>
      <sec id="sec-2-1">
        <title>1. INTRODUCTION</title>
        <p>The explosion of social networking site like Facebook, Twitter
and Instagram in a linguistic diverse country like India impacted
many users using multiple languages in tweets, personal blogs etc.
The scarcity of proper input tools for Indian Languages forced the
user to use the roman script mixed with the native script that led
to the code mixed language. This code-mixing further complicates
the application of Natural Language Processing (NLP) methods.
One such application is Named Entity Recognition (NER), which
identifies and classifies entities into categories such as a person,
organization, date-time etc. The NER is used in text mining
application, information retrieval, and machine translation etc.
NER task for Indian languages is a complex task. The use of
code-mixing further complicates this task.</p>
        <p>The shared task on Code Mix Entity Extraction in Indian
Languages (CMEE-IL)1 held at Forum for Information Retrieval
(2016) focuses on extracting entities from the code-mix twitter
data.</p>
        <p>
          Many works have done on Entity Recognition using word
embedding as a feature. Few research works are done on Entity
extraction using Character Embedding technique such as Entity
recognition using character embedding by Cicero dos Santos et al.
[
          <xref ref-type="bibr" rid="ref1">1</xref>
          ], Text segmentation using character-level text embedding is
done by Grzegorz [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ]. Some other works based on code -mix data
are SVM-based classification for entity extraction for Indian
languages [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ]. Entity extraction was done based on Conditional
Random Field [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ] and Identification and linking of tweets was
performed earlier [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ].
        </p>
        <p>
          We have submitted a system based on the character embedding a
feature representation. To retrieve character embedding features,
the word2vec model is used [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ]. Word2vec converts input
character to a vector of n-dimension. Feature representation
obtained from word2vec is used for training the system. Classifier
used for training - Support Vector Machine (SVM) which is based
on machine learning [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ].
        </p>
        <p>An outline of the task is given in Section 2. Implemented system
is described in Section 3. Section 4 describes Experiment and
result. The conclusion is discussed in Section 5.</p>
        <sec id="sec-2-1-1">
          <title>1http://www.au-kbc.org/nlp/CMEE-FIRE2016/</title>
        </sec>
      </sec>
      <sec id="sec-2-2">
        <title>2. CODE MIX ENTITY EXTRACTION (CMEE-IL) TASK</title>
        <p>Hindi-English and Tamil-English code-mixed language is given
as training data, to implement the shared task on CMEE-IL. The
task is to extract the named entities along with their named entity
tags. The training and testing dataset had raw tweets and
annotations in different files for code-mixed Hindi-English and
Tamil-English language. There were 18 types of entities present in
the training dataset in which entities like a person, location, and
entertainment were more in number compare to other entity types.
The number of tweets and number of tokens in training, as well as
testing corpus for both code-mixed languages, are shown in Table
1.
@_madhumitha_ next time im in chennaidef going
over like \"hello ennakuongapethitheriyum\"
@thoatta நான் ச ால் ல வரது ஸடீர்
ரிடரலர் நல் லா இருக்னகு ச ான் ன
படங் கள எல் லாம் சவற்றி அரடயல.over
expectations nala flop airumnu STD ச ால் லுத
@aixo_anjum sister me aesy bkwas nhi krta na muje
shoq he I liked your pinned tweet at that time too just
wait I shall give you proof
Named Entity (NE) type, Named Entity String, Start Index and
Length of the string. The participants were asked to submit a
similar annotation file after extraction all the entity related
information from test data file.</p>
      </sec>
      <sec id="sec-2-3">
        <title>3. SYSTEM DESCRIPTION</title>
        <p>In the proposed system, feature extraction plays a vital role as the
accuracy of the system relies majorly on the extracted features.
Before extracting any features, the dataset should be in an
appropriate format for the learning algorithm. The I-O-B tagging
format was used for this format conversion. The first step in
format conversion was to tokenize the given data and arrange each
word (token) per line. To identify start and end of a tweet we
added a tag &lt;S&gt; to make it easy for further processing. The
proposed system is based on character based context embedding.
The basic intuition behind the character based context embedding
is shown in Figure 1. In the figure, the Word(W0) (LIKE2) is split
into corresponding characters. Each character is represented by a
50 − dimensional vector (vector length is user defined). These
character embeddings are further concatenated to form a word
vector.
This unique vector is appended with the corresponding word. This
50-dimensional representation is converted to 150-dimenstion by
appending the neighboring context words. W-1 represents previous
context word of the word W0 and W+1 represent the next context
word of the word W0. Appending the vectors of W-1, W0 and W+1
are called context appending.</p>
        <p>The overall methodology is split into two modules; each module
is described in separate figures. Figure 2 shows the method
2 The capitalization of character is just for representation purpose.
The given raw text file contains Tweet-ID, User-ID and
corresponding tweet. The annotation file was arranged in
columns, with each column representing Tweet-ID, User-ID,
Further, we analyzed the corpus for the counts of major entities.
The count of major entities with the tags in the training corpus can
be seen in Table 3. It can be observed from Table 3 that entities
related to Entertainment tags were the most occurring entities.
followed for feature representation. Figure 3 shows steps involved
in the classification task.
extracted from the output file are converted to required annotated
format.</p>
        <p>
          The first module depicted in Figure 2 explains step involved in
feature representation. We collected additional datasets from the
different data source to improve the accuracy of the system. The
additional dataset for Tamil-English was collected from Sentiment
Analysis in Indian Languages (SAIL-2015) [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ]. Dataset from
International Conference on Natural Language Processing (ICON)
2015 POS Tagging task [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ], Mixed Script Information Retrieval
2016 (MSIR) [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] and some twitter dataset using web scraping
were used for Hindi-English.
        </p>
        <p>This huge file comprising of training as well as additional dataset
collected was then subjected for tokenization. These tokenized
words are further split into corresponding characters. These
characters are fed to vector embedding module. The output of the
module will have a matrix of length 1 × 50 for every character in
our corpus. These vectors are concatenated back to words using
an appending module. The embedding features for each word are
further subjected to context appending, resulting in a vector of
length 1 × 150. These vectors contain the information about the
word as well as neighboring word contexts.
Format conversion involves raw tweets from the given training
data set and annotated file is given to the I-O-B module. I-O-B
converts given training data into the I-O-B format. Here I-O-B
formatted training set consists of training data along with
corresponding I-O-B tags. This formatted training set is appended
with the feature vector to form training data that has to be fed to
the classifier.</p>
        <p>Figure 3 describes procedure involved in classification. During
the training phase, the classification model is built based on the
feature and label pair. During the testing phase, test data along
with its embedding features are fed to predict entity tags for
testing data. In Figure 3, Context vectors represent features and
label pairs that are fed to SVM module. Here we used SVM Light
tool to build anSVM-based classifier model. The classifier takes
features and label as an input and trains itself finally builds a
classification model. From the learned classification model, the
system predicts the entity tags for testing data. Predicted tags</p>
      </sec>
      <sec id="sec-2-4">
        <title>4. RESULT AND ANALYSIS</title>
        <p>This paper describes work of entity extraction system for
codemix twitter data using character embedding technique. In
character embedding approach words in raw code-mix training
data is tokenized into one word per line fashion and further split
into characters. This character is embedded with the n-dimension
vectors to produce feature vectors. Feature vectors appended with
the I-O-B tags to represent feature - label sets. This set is fed to
Support Vector Machine (SVM) classifier to train a classification
model. During testing phase test data undergoes character
embedding to represent the test data as a feature vector. These
feature vectors are fed to classification model that we already
trained. Classification model predicts the entity tags for the test
data set. The output of the test data set is converted to a suitable
form to represent the Annotated format. Annotated format
contains Tweet ID, User- ID; word its corresponding predicted
tags, Index and Length. Table 3 shows Cross Validation result for
both Hindi-English and Tamil-English datasets. The overall
accuracy of character embedding for the Hindi-English system is
95.996%. For Tamil-English datasets overall accuracy of
character embedding is 94.3451%.
2
3</p>
        <sec id="sec-2-4-1">
          <title>Irshad-IIIT-Hyd</title>
        </sec>
        <sec id="sec-2-4-2">
          <title>Deepak-IIT-Patna</title>
        </sec>
        <sec id="sec-2-4-3">
          <title>Veena-Amrita-T1</title>
        </sec>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>CEN@Amrita</title>
      <sec id="sec-3-1">
        <title>Deepak-IITPatna</title>
      </sec>
      <sec id="sec-3-2">
        <title>VeenaAmrita-T1</title>
      </sec>
      <sec id="sec-3-3">
        <title>BharathiAmrithaT2</title>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>CEN@Amrita Table 6. Result of Tamil-English twitter data Rank Team</title>
      <sec id="sec-4-1">
        <title>F-Measure 68.24 62.17 54.51</title>
        <p>32.83</p>
      </sec>
      <sec id="sec-4-2">
        <title>F-Measure 44.12 34.32 31.44</title>
        <p>20.94
Table 5 and 6 displays result participated in a shared task.
Implemented system ranked eighth in Hindi-English twitter
dataset with Precision 48.17 and F-measure 32.83. For
TamilEnglish our system was ranked fifth with Precision 47.62 and
Fmeasure 20.94.</p>
        <sec id="sec-4-2-1">
          <title>5. CONCLUSION AND FUTURE SCOPE</title>
          <p>The proposed system for code-mix entity extraction is submitted
as a part shared task on code-mix entity extraction system in
Indian languages (CMEE-IL) conducted by FIRE 2016. Task
involves extracting entity from the code-mix tweets. Given dataset
consist of Hindi-English and Tamil-English code-mix tweets. In
our work, we implemented character embedding system. We
conclude that overall accuracy of Character embedding for
HindiEnglish is better compared to the Tamil-English.</p>
          <p>Few errors that resulted in decrease performance of the system are</p>
        </sec>
        <sec id="sec-4-2-2">
          <title>6. ACKNOWLEDGMENT</title>
          <p>We would like to give thanks to the task organizer - Forum for
Information Retrieval Evaluation. We also thank organizers of
CMEE-IL task.</p>
        </sec>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>Dos</given-names>
            <surname>Santos</surname>
          </string-name>
          , Cıcero, Victor Guimaraes,
          <string-name>
            <given-names>R. J.</given-names>
            <surname>Niterói</surname>
          </string-name>
          and Rio de Janeiro.
          <year>2015</year>
          .
          <article-title>Boosting named entity recognition with neural character embeddings</article-title>
          .
          <source>In Proceedings of NEWS 2015 The Fifth Named Entities Workshop</source>
          , p.
          <fpage>25</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <surname>Chrupała</surname>
          </string-name>
          , Grzegorz.
          <year>2013</year>
          .
          <article-title>Text segmentation with characterlevel text embeddings</article-title>
          .
          <source>arXiv preprint arXiv:1309.4628</source>
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Anand</given-names>
            <surname>Kumar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Shriya</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            , and
            <surname>Soman</surname>
          </string-name>
          ,
          <string-name>
            <surname>K.P.</surname>
          </string-name>
          <year>2015</year>
          .
          <article-title>AMRITA-CEN@FIRE 2015: Extracting entities for social media texts in Indian languages</article-title>
          .
          <source>CEUR Workshop Proceedings</source>
          ,
          <volume>1587</volume>
          :
          <fpage>85</fpage>
          -
          <lpage>88</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <surname>Sanjay</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Anand</surname>
            <given-names>Kumar</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            , and
            <surname>Soman</surname>
          </string-name>
          ,
          <string-name>
            <surname>K.P.</surname>
          </string-name>
          <year>2015</year>
          .
          <article-title>AMRITA-CEN-NLP@FIRE 2015:CRF based named entity extraction for Twitter microposts</article-title>
          .
          <source>CEUR Workshop Proceedings</source>
          ,
          <volume>1587</volume>
          :
          <fpage>96</fpage>
          -
          <lpage>99</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <surname>Mikolov</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sutskever</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Corrado</surname>
            ,
            <given-names>G.S.</given-names>
          </string-name>
          , and
          <string-name>
            <given-names>J.</given-names>
            <surname>Dean</surname>
          </string-name>
          .
          <year>2013</year>
          .
          <article-title>Distributed representations of words and phrases and their compositionality</article-title>
          .
          <source>In Advances in neural information processing systems</source>
          , pages
          <fpage>3111</fpage>
          -
          <lpage>3119</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          <source>[6] Joachims and Thorsten</source>
          .
          <year>1999</year>
          .
          <article-title>SVM-light: Support vector machine</article-title>
          .
          <source>SVM-Light Support Vector</source>
          Machine http://svmlight. Joachim. org/, University of Dortmund,
          <volume>19</volume>
          (
          <issue>4</issue>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          <article-title>[7] Shared task on mixed script information retrieval</article-title>
          , https://msir2016.github.io,
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <surname>Vyas</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gella</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sharma</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bali</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <surname>Choudhury. October</surname>
          </string-name>
          <year>2014</year>
          .
          <article-title>POS tagging of English-Hindi code-mixed social media content</article-title>
          .
          <source>In Proceedings of the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP)</source>
          , pages
          <fpage>974</fpage>
          -
          <lpage>979</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <surname>Patra</surname>
            ,
            <given-names>B.G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Das</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Das</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , and
          <string-name>
            <surname>Prasath</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <year>2015</year>
          .
          <article-title>Shared task on sentiment analysis in Indian languages (sail) tweetsan overview</article-title>
          .
          <source>In International Conference on Mining Intelligence and Knowledge Exploration</source>
          , pages
          <fpage>650</fpage>
          -
          <lpage>655</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>Barathi</given-names>
            <surname>Ganesh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H. B.</given-names>
            ,
            <surname>Abinaya</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            ,
            <surname>Anand</surname>
          </string-name>
          <string-name>
            <surname>Kumar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Vinayakumar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            , and
            <surname>Soman</surname>
          </string-name>
          ,
          <string-name>
            <surname>K.P.</surname>
          </string-name>
          <year>2015</year>
          .
          <article-title>AMRITA-CEN@ NEEL: Identification and Linking of Twitter Entities. Making Sense of Microposts (# Microposts2015)</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <surname>Saha</surname>
            ,
            <given-names>Sujan</given-names>
          </string-name>
          <string-name>
            <surname>Kumar</surname>
            , Sanjay Chatterji, Sandipan Dandapat, Sudeshna Sarkar, and
            <given-names>Pabitra</given-names>
          </string-name>
          <string-name>
            <surname>Mitra</surname>
          </string-name>
          .
          <year>2008</year>
          .
          <article-title>A hybrid approach for named entity recognition in indian languages</article-title>
          .
          <source>In Proceedings of the IJCNLP-08 Workshop on NER for South and South East Asian Languages</source>
          , pp.
          <fpage>17</fpage>
          -
          <lpage>24</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <surname>Abinaya</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Neethu John.</given-names>
            ,
            <surname>Barathi</surname>
          </string-name>
          <string-name>
            <given-names>HB Ganesh.</given-names>
            ,
            <surname>Anand</surname>
          </string-name>
          <string-name>
            <given-names>M.</given-names>
            <surname>Kumar</surname>
          </string-name>
          ., and
          <string-name>
            <surname>Soman</surname>
            ,
            <given-names>K.P.</given-names>
          </string-name>
          <year>2014</year>
          .
          <article-title>AMRITA_CEN@ FIRE2014: Named Entity Recognition for Indian Languages using Rich Features</article-title>
          .
          <source>In Proceedings of the Forum for Information Retrieval Evaluation</source>
          , pp.
          <fpage>103</fpage>
          -
          <lpage>111</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <surname>Xue</surname>
            , Bai,
            <given-names>Chen</given-names>
          </string-name>
          <string-name>
            <surname>Fu</surname>
            , and
            <given-names>Zhan</given-names>
          </string-name>
          <string-name>
            <surname>Shaobin</surname>
          </string-name>
          .
          <year>2014</year>
          .
          <article-title>A study on sentiment computing and classification of sinaweibo with word2vec</article-title>
          .
          <source>In 2014 IEEE International congress on Big Data</source>
          , pp.
          <fpage>358</fpage>
          -
          <lpage>363</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <surname>Le</surname>
          </string-name>
          ,
          <string-name>
            <surname>Quoc</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>and Tomas</given-names>
            <surname>Mikolov</surname>
          </string-name>
          .
          <year>2014</year>
          .
          <article-title>Distributed Representations of Sentences and Documents</article-title>
          . In ICML, vol.
          <volume>14</volume>
          , pp.
          <fpage>1188</fpage>
          -
          <lpage>1196</lpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>