<!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>The UPV at GeoCLEF 2007</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Davide Buscaldi</string-name>
          <email>dbuscaldi@dsic.upv.es</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>General Terms</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="editor">
          <string-name>Geographical Information Retrieval, Index Term Expansion</string-name>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Measurement</institution>
          ,
          <addr-line>Performance, Experimentation</addr-line>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Universidad Politcnica de Valencia</institution>
          ,
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>In this work we attempted to determine the relative importance of the geographical and WordNet-extracted terms with respect to the remainder of the query. Our system is based on Lucene and uses LingPipe for Named Entity recognition. Geographical terms are expanded with WordNet holonyms and synonyms and indexed separately. We checked the relative importance of the terms by boosting them with reduction factors (0.75, 0.5 and 0.25). The comparison to the clean system (using only Lucene) shows that it is possible to improve the mean average precision if the importance of geographical terms is equal or less than the half with respect to the content words in the query. We also observed that WordNet holonyms may help in improving the recall but the term expansion is sensible to ambigue place names. As a further work, we will need to implement a toponym disambiguation method in order to reduce the impact of this kind of ambiguity.</p>
      </abstract>
      <kwd-group>
        <kwd>H</kwd>
        <kwd>3 [Information Storage and Retrieval]</kwd>
        <kwd>H</kwd>
        <kwd>3</kwd>
        <kwd>1 Content Analysis and Indexing</kwd>
        <kwd>H</kwd>
        <kwd>3</kwd>
        <kwd>3 Information Search and Retrieval</kwd>
        <kwd>H</kwd>
        <kwd>3</kwd>
        <kwd>4 Systems and Software</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        Since our first participation at the GeoCLEF we have been developing a method that can use the
information contained in the WordNet [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] ontology for the Geographical Information Retrieval
task. In our first attempt [
        <xref ref-type="bibr" rid="ref2 ref5">2, 5</xref>
        ] we simply used synonyms (alternate names) and meronyms of
locations that appeared in the query in order to expand the query itself. This method performed
poor, due to the noise introduced by the expansion. Subsequently, we introduced a method that
exploits the inverse of the meronymy relationship - holonymy (a concept A is holonym of another
concept B if A contains B). We named this method Index Term Expansion [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. With this method
we add to the geographical index terms the informations about their holonyms, such that a user
looking information about Spain will find documents containing Valencia, Madrid or Barcelona
even if the document itself does not contain any reference to Spain. The results obtained with
this method showed that the inclusion of WordNet holonyms allowed to obtain an improvement in
recall, although it was not so significant as we hoped (about 1%). Moreover, we noticed that the
use of the Index Term Expansion method did not allow to obtain the same precision of the clean
system. We individuated the reason of this behaviour in the fact that the geographical terms were
assigned the same importance of the other terms of the query. Therefore, in this participation
we attempted to determine the relative importance of geographical and WordNet-extracted terms
with respect to the remainder of the terms of the query. This has been done by means of the
separation of the index of geographical terms from the general index and the creation of another
index that contains only WordNet-extracted terms.
      </p>
      <p>In the following section, we describe the system and how index term expansion works. In
section 3 we describe the characteristics of our submissions and show a resume of the obtained
results.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Our System</title>
      <p>The core of the system is constituted by the Lucene1 open source search engine, version 2.1. The
engine is supported by a module that uses LingPipe2 for HMM-based Named Entity recognition
(this module performs the task of recognizing geographical names in text), and another one that
is based on the MIT Java WordNet Interface 3 in order access the WordNet ontology and find
synonyms and holonyms of the geographical names.
2.1</p>
      <sec id="sec-2-1">
        <title>Indexing</title>
        <p>During the indexing phase, the documents are examined in order to find location names (toponym)
by means of LingPipe. When a toponym is found, then two actions are performed: first of all,
the toponym is added to a separate index (geo index) that contains only the toponyms. In the
second place, WordNet is examined in order to find holonyms (recursively) and synonyms of the
toponym. The retrieved holonyms and synonyms are put in another separate index (wn index),
containing only wordnet-related information.</p>
        <p>For instance, consider the following text from the document GH950630-000000 in the Glasgow
Herald 95 collection:
...The British captain may be seen only once more here, at next month’s world
championship trials in Birmingham, where all athletes must compete to win selection for
Gothenburg...</p>
        <p>The following toponyms are added to the geo index: “Birmingham”, “Gothenburg”. Birmingham
is found in WordNet both as Birmingham, Pittsburgh of the South, in the United States and
Birmingham, Brummagem, an important city in England. The holonyms in the first case are
Alabama, Gulf States, South, United States of America and their synonyms. In the second case,
we obtain England, United Kingdom, Europe and their synonyms. All these words are added to the
wn index for Birmingham, since we did not use any method in order to disambiguate the toponym.
For Gothenburg we obtain Sweden and Europe again, together with the original Swedish name of
Gothenburg (Goteborg ). These words are also added to the wn index.
2.2</p>
      </sec>
      <sec id="sec-2-2">
        <title>Searching</title>
        <p>For each topic, LingPipe is run again in order to find the geographical terms. In the search phase,
we do not use WordNet. However, the toponyms individuated by LingPipe are searched in the
geographical and/or WordNet indices.</p>
        <p>1http://lucene.apache.org/
2http://www.alias-i.com/lingpipe/
3http://www.mit.edu/∼markaf/projects/wordnet/</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Experiments</title>
      <p>We submitted a total of 12 runs at GeoCLEF 2007. Two runs were used as “benchmarks”:
they were obtained by using the base Lucene system, without index term expansion, in one case
considering only topic title and description, and all fields in the other case. The remaining runs
used the geo index or wn index or both, with different weightings that were submitted using the
Lucene “Boost” operator. This operator allows to assign relative importance to terms. This means
that a term with, for instance, a boost factor of 4 will be four times more important than the
other terms in the query. We used 0.75, 0.5 and 0.25 as boost factor for geographical and WordNet
terms, in order to study their importance in the retrieval process.</p>
      <p>In the following tables we show the results obtained in terms of Mean Average Precision and
Recall for all the submitted runs.</p>
    </sec>
    <sec id="sec-4">
      <title>Conclusions and Further Work</title>
      <p>
        The obtained results show that geographical terms are less important than content words in the
topics. Reducing the importance of geographical terms allowed to improve the mean average
precision. The impact of WordNet is not clear. We suppose that the effects of the introduction
of WordNet synonyms and holonyms are conditioned by the ambiguity of some toponyms, such
as “Birmingham” that can be a city in Alabama or in England. The ambiguity of toponyms is
a common problem in news text [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], and currently various approaches are being developed [
        <xref ref-type="bibr" rid="ref1 ref7">7, 1</xref>
        ].
We plan to carry out more experiments in order to understand better the impact of toponym
ambiguity over geographical information retrieval.
      </p>
    </sec>
    <sec id="sec-5">
      <title>Acknowledgements</title>
      <p>We would like to thank the TIN2006-15265-C06-04 research project for partially supporting this
work.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>D.</given-names>
            <surname>Buscaldi</surname>
          </string-name>
          and
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          .
          <article-title>A conceptual density-based approach for the disambiguation of toponyms</article-title>
          .
          <source>International Journal of Geographical Information Systems</source>
          ,
          <year>2008</year>
          . accepted, to be published.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>D.</given-names>
            <surname>Buscaldi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          , and
          <string-name>
            <given-names>E.</given-names>
            <surname>Sanchis</surname>
          </string-name>
          .
          <article-title>Using the wordnet ontology in the geoclef geographical information retrieval task</article-title>
          .
          <source>In Carol Peters</source>
          , Fredric C. Gey, Julio Gonzalo, Henning Mller,
          <string-name>
            <given-names>Gareth J.F.</given-names>
            <surname>Jones</surname>
          </string-name>
          , Michael Kluck, Bernardo Magnini, Maarten de Rijke, and Danilo Giampiccolo, editors,
          <source>Accessing Multilingual Information Repositories</source>
          , volume
          <volume>4022</volume>
          of Lecture Notes in Computer Science, pages
          <fpage>939</fpage>
          -
          <lpage>946</lpage>
          . Springer, Berlin,
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>D.</given-names>
            <surname>Buscaldi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          , and
          <string-name>
            <given-names>E.</given-names>
            <surname>Sanchis</surname>
          </string-name>
          .
          <article-title>A wordnet-based indexing technique for geographical information retrieval</article-title>
          . In Carol Peters, Fredric C. Gey, Julio Gonzalo, Henning Mller,
          <string-name>
            <given-names>Gareth J.F.</given-names>
            <surname>Jones</surname>
          </string-name>
          , Michael Kluck, Bernardo Magnini, Maarten de Rijke, and Danilo Giampiccolo, editors,
          <source>Lecture Notes in Computer Sciences</source>
          , volume
          <volume>4730</volume>
          of Lecture Notes in Computer Science, pages
          <fpage>954</fpage>
          -
          <lpage>957</lpage>
          . Springer, Berlin,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Eric</given-names>
            <surname>Garbin</surname>
          </string-name>
          and
          <string-name>
            <given-names>Inderjeet</given-names>
            <surname>Mani</surname>
          </string-name>
          .
          <article-title>Disambiguating toponyms in news</article-title>
          .
          <source>In conference on Human Language Technology and Empirical Methods in Natural Language Processing (HLT05)</source>
          , pages
          <fpage>363</fpage>
          -
          <lpage>370</lpage>
          , Morristown, NJ, USA,
          <year>2005</year>
          .
          <article-title>Association for Computational Linguistics</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>Fredric</given-names>
            <surname>Gey</surname>
          </string-name>
          , Ray Larson, Mark Sanderson, Hideo Joho, and
          <string-name>
            <given-names>Paul</given-names>
            <surname>Clough</surname>
          </string-name>
          .
          <article-title>Geoclef: the clef 2005 cross-language geographic information retrieval track</article-title>
          .
          <source>In Working notes for the CLEF 2005</source>
          Workshop (C.Peters Ed.), Vienna, Austria,
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>G. A.</given-names>
            <surname>Miller</surname>
          </string-name>
          .
          <article-title>Wordnet: A lexical database for english</article-title>
          .
          <source>In Communications of the ACM</source>
          , volume
          <volume>38</volume>
          , pages
          <fpage>39</fpage>
          -
          <lpage>41</lpage>
          ,
          <year>1995</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Simon</given-names>
            <surname>Overell</surname>
          </string-name>
          , Joao Magalhaes, and
          <article-title>Stefan Ru¨ger. Place disambiguation with co-occurrence models</article-title>
          . In Carol Peters, editor,
          <source>GeoCLEF 2006 Workshop</source>
          , Alicante, Spain,
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>