<!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>Portuguese</journal-title>
      </journal-title-group>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>Combining passages in monolingual task with IR-n system</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Information Retrieval</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Fernando Llopis and Elisa Noguera Grupo de investigaci ́on en Procesamiento del Lenguaje Natural y Sistemas de Informaci ́on Departamento de Lenguajes y Sistemas Inform ́aticos University of Alicante</institution>
          ,
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2004</year>
      </pub-date>
      <volume>0</volume>
      <abstract>
        <p>This paper describes our participation in monolingual tasks at CLEF-2005. In this research we have worked in the following languages: English, French, Portuguese, Bulgarian and Hungarian. Our task has been focused on using combined different size passages to improve the Information Retrieval process. Once we have studied the experiments which have been carried out and the official results at CLEF, we have realized that this combining model gets better the achieved scores considerably.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        Information Retrieval systems based on passages (PR) [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] determine the relevance of a document
regarding to a question. This relevance is obtained from the similarity of different fragments in
this document regarding to the same question. This models not only let to improve the location of
relevant documents, but also let us to find the most relevant part of the document accurately. This
last advantage allows us that these systems which are used in other tasks as Question Answering
(QA).
      </p>
      <p>PR systems are classified according to how the passages are determined in each document.
IR-n system is a PR system which defines the passages based on a fixed number of sentences. This
provides the passages with some syntactical content. Last years our researches with IR-n system
are based on detecting the suitable size for each collection ( to experiment with test colletion ),
but determining the similarity of a document based on the passage with more similarity. This
year the score which is given to each document is based on the similarity of several size passages.</p>
      <p>
        This paper is organized as follows: next section describes IR-n system and its new changes.
Following, we describe the task developed at CLEF 2005 by our system and the training. And
finally, we present the archieved results and the conclusions.
IR-n system [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] was developed in 2001. It was written in C++ entirely, although it has been used
external tools (stemmers) in few occasions. Last year [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] the system was designed and developed
again with the aim of getting more information (size of passages in words) and to improve the
process speed.
      </p>
      <p>The system works in Linux system without excesive requeriments, nevertheless, in view of the
fact that the search process is carried out with structures load in memory, it is convenient that
the computer has the enough memory.</p>
      <p>In this section is presented the main charateristics of IR-n system and it is detailed the combined
passages method used in this edition.
2.1</p>
      <sec id="sec-1-1">
        <title>Resources: stemmers and stopword lists</title>
        <p>This was the first year that we have worked with Bulgarian and Hungarian languages. It has
been used the stemmers and stopwords lists available on the web http://www.unine.ch/info/clef.
We can highlight that Hungarian and Bulgarian collections are encoded in UTF-8. In addition
Bulgarian stemmer is developed in perl to support UTF-8. The rest of the stemmers are developed
in C.
2.2</p>
      </sec>
      <sec id="sec-1-2">
        <title>Similarity measures</title>
        <p>
          IR-n system is ready for using several similarity measures: cosine [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ], pivoted cosine [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] and okapi
[
          <xref ref-type="bibr" rid="ref6">6</xref>
          ]. To the last one the values of parameters (k1,b,avg) could be update in a easy way, in order to
get the best results.
        </p>
        <p>On the whole, experiments carried out by okapy measure show us that we could obtain the
best results. Furthermore, we have contrasted normalization concept with size passage again.
Previous versions of IR-n system does not use size passage in the similarity measures because
all the passages had the same size. Last edition we could check that results improved if it was
considered size passages.
2.3</p>
      </sec>
      <sec id="sec-1-3">
        <title>Query expansion</title>
        <p>
          Most of IR systems use query expansion techniques [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ] based on adding the most frequent terms
contain in the more relevant documents to the original query. Architecture IR-n allows us to use
query expansion based on more relevant passages or documents. In fact, last edition we got better
results using the more relevant passages.
2.4
        </p>
      </sec>
      <sec id="sec-1-4">
        <title>Combined passages</title>
        <p>The present year, technique called ’combined passages’ has been developed. The model consists
of applying similar techniques for merging relevant document lists in multilingual task but using
relevant passage lists of different size.</p>
        <p>This model consists of using different size passages in order to get relevant document lists. The
list which have been obtained are combined sequently. Table 1 shows different methods used to
obtain the ranking of scores.</p>
        <p>We have used four methods: MAX merges the n list and if a document is in several lists it will
provide the highest score. SUM carries out the average of the scores. The methods 3 and 4 are
as the previous ones but using normalization. This normalization is carried out subtracting the
score of each document RSVk from the minimum score of the list and dividing by max(RSVK ) −
min(RSVk).</p>
        <p>Obviously, this model improves and involves speed process. However in IR-n system
architecture, this trouble does not increase the speed process of the system. This happens because
IR-n system produces a segmentacion of the documents in passages in the search time and the
calculation of similarity is carried out on structures load in memory.
3</p>
      </sec>
    </sec>
    <sec id="sec-2">
      <title>Training</title>
      <p>This section describes the training process which has been carried out in order to obtain the
best features to improve the performance of the system. Firstly, the collections and resources are
described. The following section explains the specific experiments which we have carried out.
3.1</p>
      <sec id="sec-2-1">
        <title>Data Collections</title>
        <p>This year our system has participated in the following tasks: Monolingual: English, French,
Portuguese, Bulgarian y Hungarian. Table 2 shows the characteristics of the collection which we
have worked.</p>
        <p>• SDAvg is the average of sentences in each document.
• WDAvg is the average of words in each document.</p>
        <p>• WSAvg is the average of words in each sentence.
3.2</p>
      </sec>
      <sec id="sec-2-2">
        <title>Experiments</title>
        <p>This year several tests have been carried out in order to establish the best similarity measure for
each language and to provide the value of input parameters in the system. We have evaluated
the following languages: English, French and Portuguese. We could not evaluated Bulgarian and
Hungarian languages because we did not have data of last years, as result of this, we have choosed
the similarity measures and the parameters for these languages comparing them with the rest
ones.</p>
        <p>The aim of the experiments phase is set up the optimum value of the input parameters for
each collection. For training has been used the collections CLEF-2003 (English and French) and
CLEF-2004 (Portuguese). Query expansion techniques have also been used in all languages.
avgP
0.5083
0.5240
0.4741
expd
5
5
10
It has been performed experiments for setting the size passages and the values of parameters in
okapi system which allow us to obtain the best results. As the table shows 3 the size passage is
the same for all languages ( 8 sentences), however in French is 9 sentences.
3.2.2</p>
        <sec id="sec-2-2-1">
          <title>Fixed size passages with query expansion</title>
          <p>On the one hand, experiments which are carried out with query expansion tried to fix the number
terms to add in the original query and the number of documents (passages) to take into account.
Furthermore, we have evaluated the use of different size passages. We have got the best results
with 10 terms in every test and it has been used the 5 or 10 passages more relevants depending
on the specific language. On the other hand, it can be appreciated that the size passage is 8 in
this case also.</p>
          <p>As we check in the table 5 query expansion in fixed system allows us to improve scores between
3.6% and 7.2% according to the different languages.
3.2.3</p>
        </sec>
        <sec id="sec-2-2-2">
          <title>Combined passages</title>
          <p>Combined passages method consist on using the similarity values which are provided from different
size passages of the same document to obtain the document similarity. Because of that, it has
been defined three types of passages: small, medium and big passage. The number of sentences
which composes each passage is the following:</p>
          <p>P 1 = (3, 4, 5, 6)
P 2 = (7, 8, 9, 10)
P 3 = (11, 12, 13, 14)</p>
          <p>Experiments have been carried out by means of using one of each type. In this way is obtained
the similarity of each passage. Document similarity is got using one of the four method described
previously (see table 1).</p>
        </sec>
        <sec id="sec-2-2-3">
          <title>Language avgP</title>
          <p>English 0.5083</p>
          <p>French 0.5240
Portuguese (2004) 0.4741
avgP with exp
0.5267
0.5488
0.5084</p>
          <p>Dif
+3.6%
+4.7%
+7.2%</p>
          <p>The tests which get better results are showed in table 6. ’Model’ belongs to the combined
method used and the columns P1, P2 and P3 are size passages which are provided by the best
combined method. The columns P1, P2 and P3 are a small, medium and big passages respectively.</p>
          <p>As we show the combined method, which provides the best results, is the method 2 (SUM
without normatization) for all languages.</p>
          <p>We have proved that the results increases comparing with fixed system in all languages except
in French.
3.2.4</p>
        </sec>
        <sec id="sec-2-2-4">
          <title>Combined passages with query expansion</title>
          <p>We have carried out the same tests with query expansion and the results improves in all languages,
although the increase is not meaningful in Portuguese.</p>
          <p>The best combined method for English and Portuguese carries on being the method 2 (SUM),
but in French is 1 (MAX) (see table 7).</p>
          <p>As we check in table 5 combined passages system improves the results between 3.1% and 7.7%
according to each language.</p>
          <p>Tables 9 and 10 compare both methods showing the best results obtained in each test.</p>
          <p>• IRn-xx-fexp is based on using the fixed size passages system which obtains the best results
in training. Query expansion techniques have been used in these runs.
• IRn-xx-vnexp Combined passages system has been used without applying query expansion
techniques.
• IRn-xx-vexp Combined passages system has been used with query expansion techniques.</p>
          <p>Officials results for each run are showed in table 11. The model IRn-xx-vnexp is taken as a
reference. As other models which use query expansion techniques, our model also increases the
performance on the base system.</p>
          <p>In this table 11 the two models with query expansion are compared. This one presents that
the percentage of improvement in the combined model is around 4% of increase avgP in every
language (except for Bulgarian).</p>
          <p>As shown table 11, our results are above average in all languages appreciably, except for
Bulgarian that the results are below average.
5</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Conclusions and Future Work</title>
      <p>This paper has described PR model which uses similarity values of three different size passages for
each document in order to obtain the similarity of document regarding the question. This model
has allowed us to improve the results around 4% according to models which used only a fixed size
passage.</p>
      <p>French
Portuguese
Hungarian
Bulgarian</p>
      <p>Run
IRn-en-vexp
IRn-en-fexp
IRn-en-vnexp
CLEF Average</p>
      <p>IRn-fr-vexp
IRn-fr-fexp
IRn-fr-vnexp
CLEF Average</p>
      <p>IRn-pt-vexp
IRn-pt-fexp
IRn-pt-vnexp
CLEF Average</p>
      <p>IRn-hu-vexp
IRn-hu-fexp
IRn-hu-vnexp
CLEF Average</p>
      <p>IRn-bu-vexp
IRn-bu-fexp
IRn-bu-vnexp</p>
    </sec>
    <sec id="sec-4">
      <title>Acknowledgements</title>
      <p>This research has been partially funded by the Spanish Government under project CICyT number
TIC2003-07158-C04-01 and by the Valencia Government under project numbers GV04B-276 and
GV04B-268</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>Aitao</given-names>
            <surname>Chen</surname>
          </string-name>
          and
          <string-name>
            <given-names>Fredric C.</given-names>
            <surname>Gey</surname>
          </string-name>
          .
          <article-title>Combining query translation and document translation in cross-language retrieval</article-title>
          . In Carol Peters, Julio Gonzalo,
          <string-name>
            <given-names>Martin</given-names>
            <surname>Braschler</surname>
          </string-name>
          , and et al., editors,
          <source>4th Workshop of the Cross-Language Evaluation Forum, CLEF 2003, Lecture notes in Computer Science</source>
          , pages
          <fpage>108</fpage>
          -
          <lpage>121</lpage>
          , Trondheim, Norway,
          <year>2003</year>
          . Springer-Verlag.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>M.</given-names>
            <surname>Kaskziel</surname>
          </string-name>
          and
          <string-name>
            <given-names>J.</given-names>
            <surname>Zobel</surname>
          </string-name>
          .
          <article-title>Passage retrieval revisited</article-title>
          .
          <source>In Proceedings of the 20th annual International ACM Philadelphia SIGIR</source>
          , pages
          <fpage>178</fpage>
          -
          <lpage>185</lpage>
          ,
          <year>1997</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>F.</given-names>
            <surname>Llopis.</surname>
          </string-name>
          IR-n: Un Sistema de Recuperaci´on de Informaci´
          <article-title>on Basado en Pasajes</article-title>
          .
          <source>PhD thesis</source>
          , University of Alicante,
          <year>2003</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Fernando</given-names>
            <surname>Llopis</surname>
          </string-name>
          , Rafael Mun˜oz,
          <string-name>
            <surname>Rafael M. Terol</surname>
            , and
            <given-names>Elisa</given-names>
          </string-name>
          <string-name>
            <surname>Noguera</surname>
          </string-name>
          .
          <article-title>Ir-n r2 : Using normalized passages</article-title>
          .
          <source>In Carol Peters and Francesca Borri</source>
          , editors,
          <source>Cross Language Evaluation Forum: Working Notes for the CLEF 2004 Workshop</source>
          , pages
          <fpage>65</fpage>
          -
          <lpage>72</lpage>
          , Pisa, Italy,
          <year>2004</year>
          . IST-CNR.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>G.</given-names>
            <surname>Salton</surname>
          </string-name>
          .
          <article-title>Automatic text processing: The transformation, analysis, and retrieval of information by computer</article-title>
          .
          <year>1989</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <surname>Savoy</surname>
            <given-names>J.</given-names>
          </string-name>
          <article-title>Fusion of probabilistic models for effective monolingual retrieval</article-title>
          . In Carol Peters, Julio Gonzalo,
          <string-name>
            <given-names>Martin</given-names>
            <surname>Braschler</surname>
          </string-name>
          , and et al., editors,
          <source>4th Workshop of the Cross-Language Evaluation Forum, CLEF 2003, Lecture notes in Computer Science</source>
          , Trondheim, Norway,
          <year>2003</year>
          . SpringerVerlag.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>A.</given-names>
            <surname>Singhal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Buckley</surname>
          </string-name>
          , and
          <string-name>
            <given-names>M.</given-names>
            <surname>Mitra</surname>
          </string-name>
          .
          <article-title>Pivoted document length normalization</article-title>
          .
          <source>In Proceedings of the 19th Annual International ACM SIGIR Conference on Research and Developement in Information Retrieval</source>
          ,
          <source>Experimental Studies</source>
          , pages
          <fpage>21</fpage>
          -
          <lpage>29</lpage>
          ,
          <year>1996</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>