<!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>NAIST at the CLEF 2013 QA4MRE Pilot Task</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Philip Arthur</string-name>
          <email>philip-a@is.naist.jp</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Graham Neubig</string-name>
          <email>neubig@is.naist.jp</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Sakriani Sakti</string-name>
          <email>ssakti@is.naist.jp</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Tomoki Toda</string-name>
          <email>tomoki@is.naist.jp</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Satoshi Nakamura</string-name>
          <email>s-nakamura@is.naist.jp</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Nara Institute of Science and Technology</institution>
          ,
          <addr-line>8916-5, Takayama-cho, Ikoma-shi, Nara 630-0192</addr-line>
          <country country="JP">JAPAN</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2013</year>
      </pub-date>
      <abstract>
        <p>This paper describes the Nara Institute of Science and Technology's system for the entrance exam pilot task of CLEF 2013 QA4MRE. The core of the system is a similar to the system for the main task of CLEF 2013 QA4MRE. We use minimum error rate training (MERT) to train the weights of the model and also propose a novel method for MERT with the addition of a threshold that de nes the certainty with which we must answer questions. The system received a score of 22% c@1.</p>
      </abstract>
      <kwd-group>
        <kwd>discriminative learning</kwd>
        <kwd>minimum error rate training</kwd>
        <kwd>linear feature model</kwd>
        <kwd>question answering</kwd>
        <kwd>machine reading</kwd>
        <kwd>inter-sentence features</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        While years of research on Question Answering (QA) have greatly improved
the state-of-the-art, we know that this problem is far from solved. Question
answering campaigns such as CLEF [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] and TREC [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] have resulted in a large
number of distinct proposals about how to build robust systems that can provide
correct answers in the general domain.
      </p>
      <p>
        One of the features of QA that is widely accepted is that \two heads are
better than one" [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. By combining di erent information sources, we gain the
ability to cover up the disadvantages of one system with another information
source, which results in more e ective QA on the whole. One way to combine
multiple systems is to weight each system's score with some value and choose
the maximum value from a linear combination [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. Another important aspect of
QA is that it is sometimes good not to answer the question [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. Many systems
currently return No Answer (NoA) if they are not con dent because a wrong
answer is often worse than no answer [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. Our system for the CLEF Question
Answering for Machine Reading Evaluation (QA4MRE) this year is based on
these two principles, devising a number of features that provide useful
information to identify the correct answer, and combining them together with a learning
framework that is also able to learn when not to answer questions.
      </p>
      <p>We introduce several new features that span multiple sentences in addition to
more traditional features such as cosine similarity. These features are combined
in a framework that learns both how and when to answer questions in a single
weighted linear model. In particular, we nd how to answer questions by learning
appropriate weigths for each feature, with nal score of an answer being their
weighted linear combination. We de ne when not to answer by not returning
candidates for which scores are less than a set threshold t from other candidates.
Finally, we propose a method to intelligently weight the features and threshold
using minimum error rate training.</p>
      <p>As results, our system received a score of 22% on the Entrance Exam pilot
task according to the c@1 evaluation metric.
2</p>
    </sec>
    <sec id="sec-2">
      <title>System Description</title>
      <p>
        The core of our system relies on a log linear scoring model that is fully described
in [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. Before we score the answer, our system use several basic preprocessing
methods such as tokenization, named entity recognition, anaphora resolution,
lowercasing, stop word deletion, and stemming to process the text before hand.
Our model is based on bags-of-n-grams vector space model that takes the union
from higher and lower order of n-grams. We weight the features of the model
based on tf-idf term weighting and also use this criterion to measure the
similarity between vectors. Next, we score each candidate answer for each question with
features that are based on traditional intra-sentence features and some proposed
inter-sentence features multiplied by their trained weight. The candidate answer
with the best score that exceeds a de ned threshold will be chosen as system's
answer, or the system will return no answer if the score is below the threshold.
      </p>
      <p>
        To train the model, we used a new training method based on minimum error
rate training (MERT, [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]) for question answering. The training method takes a
set of questions, candidate answers and their particular features score and train
it accordingly. Furthermore, we de ne a threshold t, and the system will only
answer if the highest scoring candidate exceeds the second candidate by more
than the threshold. This MERT plus its threshold is a new training method
called TMERT that is described in [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].
3
3.1
      </p>
    </sec>
    <sec id="sec-3">
      <title>Evaluation</title>
      <sec id="sec-3-1">
        <title>Evaluation Measures</title>
        <p>
          To evaluate the system's performance, we used \c@1," which is used for the
QA4MRE evaluation metric [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ],
1
n
ca +
ca ca
n
(1)
where \ca", \na", and \n" correspond to \correct answer", \no answer", and
number of questions.
        </p>
        <p>Inter-sentence Features and TMERT for Question Answering</p>
      </sec>
      <sec id="sec-3-2">
        <title>Experimental Setup</title>
        <p>
          The system used only the English test set document and did not reference the
background collection. The \Entrance Exams" task aims to evaluate systems
under the same conditions under which humans are evaluated for entering
university. This new task consists of 9 test sets containing 10 questions with 4
candidate answers each. To train the parameters of the model, we use both test
set documents from past CLEF 2011 and 2012 QA4MRE campaigns [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] and
receive a c@1 score of 42% on the training data [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ].
3.3
        </p>
      </sec>
      <sec id="sec-3-3">
        <title>Entrance Exam Task Results</title>
        <p>First we show the result in Table 1. For the Japanese entrance exam pilot
task, we only submitted 1 run which achieved 10 correct answers, 35 wrong
answers and 1 unanswered question resulting a c@1 score of 22.22%, which is
lower than a random baseline (25%). We take a look at the results carefully and
spot some mistakes the system made. This sample question is taken from the
r id=1 and q id=1.</p>
        <p>When I was a child, our dining room had two kinds of chairs - two large
ones with arm rests and four small ones without. The larger ones stood at
the ends of the table, the small ones on the sides. Mom and Dad sat in the
big chairs, except when one of us was away; then Mom would sit in one
of the smaller chairs. I always remained in the same place, at my father's
right. He always sat at the end, at the \head" of the table.</p>
        <p>Question: Where did the author's mother sit when one of her children was
away?
1. She didn't change her chair.
2. She moved her own chair next to Dad's.
3. She moved to an empty chair on the side.</p>
        <p>4. She sat opposite to Dad.</p>
        <p>The system return 4 as its answer because the keyword \sat" occurs in it.
Normally, to answer this question, we need deep comprehension of the reading
document. While all of the sentences are constructively describing the scene, we
know that the answer must be 2 or 3 because candidate answers number 1 and
4 are contradicting the evidence. Further, because there is not enough evidence
to answer candidate answer number 2, the most probable answer is candidate
answer number 3. However, our system is incapable of constructing this kind of
proof. Currently, our features are only based on statistical analysis of keywords
that occured in the passage, question, and candidate answer so this type of
logical inferences can't be solved. This problem shows that our system needs further
re nement in terms of processing, inference, and more knowledge to answer these
type of questions.
4</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Conclusion</title>
      <p>As part of our participation in QA4MRE Pilot Task@CLEF 2013, we have
developed QA-system that is simple but lacks in terms of answering more complex
question types found in the pilot task. For future work, we believe that it is
necessary to use external knowledge such as background knowledge so the
system can provide further analysis in classifying questions and determining certain
type of strategies to answer the questions. Further work will be focussed on
integrating external knowledge derived from sources such as Wikipedia and the
background collections by adding more features.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Arthur</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Neubig</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sakti</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Toda</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nakamura</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Inter Sentence Features and Thresholded Minimum Error Rate Training: NAIST at CLEF 2013 QAMRE</article-title>
          . In: CLEF (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Brill</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dumais</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Banko</surname>
            ,
            <given-names>M.:</given-names>
          </string-name>
          <article-title>An Analysis of the AskMSR Question-Answering System</article-title>
          .
          <source>In: In Proceedings of EMNLP</source>
          . pp.
          <volume>257</volume>
          {
          <issue>264</issue>
          (
          <year>2002</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Chu-Carroll</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Czuba</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Prager</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ittycheriah</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          : In Question Answering,
          <article-title>Two Heads Are Better Than One</article-title>
          . In: In HLT-NAACL. pp.
          <volume>24</volume>
          {
          <issue>31</issue>
          (
          <year>2003</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Dang</surname>
            ,
            <given-names>H.T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lin</surname>
            ,
            <given-names>J.J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kelly</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Overview of the TREC 2006 Question Answering Track 99</article-title>
          . In: TREC (
          <year>2006</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Och</surname>
            ,
            <given-names>F.J.:</given-names>
          </string-name>
          <article-title>Minimum error rate training in statistical machine translation</article-title>
          .
          <source>In: Proceedings of ACL</source>
          (
          <year>2003</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6. Pen~as,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Rodrigo</surname>
          </string-name>
          ,
          <string-name>
            <surname>A.</surname>
          </string-name>
          :
          <article-title>A Simple Measure to Assess Non-response</article-title>
          .
          <source>In: Proceedings of ACL</source>
          . pp.
          <volume>1415</volume>
          {
          <fpage>1424</fpage>
          . Association for Computational Linguistics, Portland, Oregon, USA (
          <year>June 2011</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7. Pen~as,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Hovy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.H.</given-names>
            ,
            <surname>Forner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            ,
            <surname>Rodrigo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Sutcli</surname>
          </string-name>
          <string-name>
            <surname>e</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.F.E.</given-names>
            ,
            <surname>Forascu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Sporleder</surname>
          </string-name>
          ,
          <string-name>
            <surname>C.</surname>
          </string-name>
          :
          <article-title>Overview of QA4MRE at CLEF 2011: Question Answering for Machine Reading Evaluation</article-title>
          . In: Petras,
          <string-name>
            <given-names>V.</given-names>
            ,
            <surname>Forner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            ,
            <surname>Clough</surname>
          </string-name>
          , P.D. (eds.)
          <string-name>
            <surname>CLEF (Notebook</surname>
            <given-names>Papers</given-names>
          </string-name>
          /Labs/Workshop) (
          <year>2011</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8. Tu s, D.:
          <article-title>Natural Language Question Answering in Open Domains</article-title>
          .
          <source>The Computer Science Journal of Moldova</source>
          <volume>19</volume>
          (
          <issue>2</issue>
          ),
          <volume>146</volume>
          {
          <fpage>164</fpage>
          (
          <year>2011</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>