<!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 University of Amsterdam at the CLEF Cross Language Speech Retrieval Track 2007</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Bouke Huurnink</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>ISLA, University of Amsterdam</institution>
        </aff>
      </contrib-group>
      <abstract>
        <p>In this paper we present the contents of the University of Amsterdam submission in the CLEF Cross Language Speech Retrieval 2007 English task. We describe the effects of using character n-grams and field combinations on both monolingual English retrieval, and crosslingual Dutch to English retrieval. Even in a well-funded archive, it is often infeasible to manually annotate all documents in the collection. The digitisation of multimedia collections opens the door to automatic techniques for discovering interesting documents, provided that we can leverage automatically generated annotations to their best advantage. The University of Amsterdam participated in the CLEF CLSR 2007 English task in the hope of applying lessons learned there to the retrieval of documents from large Dutch audio-visual archives, in particular the Netherlands Institute for Sound and Vision1 which stores the nation's public television broadcasts. These archives contain a lot of spoken material, some of which has been manually annotated by a team of archivists. A significant portion, however, has not been annotated at all. Therefore we investigated strategies both for search using only automatically generated text, as well as combining this text with manually generated annotations. Our focus was on simple techniques that can easily be transferred to other domains. In our experiments we explored the use of character n-grams to improve the retrieval of documents using automatically generated text. We also explored the combination of manually generated with automatically generated text. In both cases we contrasted monolingual retrieval of English documents using English queries with cross-lingual retrieval of English results using Dutch queries. The remainder of this paper is structured as follows. We first describe the setup of the retrieval system and experiments in Section 2. This is followed by the runs and results in Section 3. Finally we present our conclusions in Section 4.</p>
      </abstract>
      <kwd-group>
        <kwd>Speech Retrieval</kwd>
        <kwd>Cross-Language Information Retrieval</kwd>
        <kwd>Text Transformations</kwd>
        <kwd>Field Combination</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>We work with the CLEF CL-SR experimental English spoken document collection, which
consists of a series of English language interviews that have been manually split into short segments.
Each segment has been associated with manually and automatically assigned metadata, including
manual summaries, manually assigned keywords, automatic speech transcriptions, and a
number of fields containing automatically assigned keywords. For experiments using only
automatically assigned information we use the ASRTEXT2006B (speech transcription) and
ASRKEYWORD2004A2 (automatic keyword) fields. Other automatic transcripts and keywords were
available, but we chose to use only one of each, which may have had a negative impact on our results.
For experiments including manual annotations we also added the MANUALKEYWORD (manual
keyword) and SUMMARY (manual summary) fields.</p>
      <p>The CLEF CL-SR benchmark provided 63 training topics with a ground truth, as well as 33
test topics. The original topic descriptions are in English, and have the traditional TREC title
description - narrative structure. Also available were manually created Dutch topic translations,
donated by the University of Twente. We used these Dutch topics for the cross-lingual runs.
2.1</p>
      <p>
        Retrieval Infrastructure
All documents were indexed and retrieved using the Indri engine from the Lemur retrieval toolkit2.
This engine allows for fielded search in a language modeling framework. As is standard in English
text retrieval, commonly occurring stop words were removed. Terms were stemmed to their
morphological roots using the Porter [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] stemming algorithm. Retrieval parameters were optimised
for automatic monolingual retrieval on the ASRTEXT2006B field, using the training topics to find
the best combination.
      </p>
      <p>
        As for the topics, the title and description fields of each topic were combined to make a text
query. The Dutch topics were automatically translated to English using online resources, in order
to be able to retrieve the English documents. As different translation systems perform better
for different topics [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], we used two different online tools to translate the topics from Dutch to
English. We used the SYSTRAN3 and FreeTranslation.com4 systems, and combined the results to
form a large ‘bag-of-words’ cross-lingual query. Some of the differences between translations can
be seen in the example given in Table 1. For instance, the word ‘acts’ is translated into ‘deeds’ by
FreeTranslation.com and ‘prowesses’ by SYSTRAN.
Character n-gram tokenisation has been shown to boost retrieval in certain situations [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], such as
retrieval from English newspapers [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. We were interested to see whether this would also prove
useful for the specific situation of (cross-lingual) retrieval of automatically generated text. To test
this, we followed the tokenisation strategy in [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], and created overlapping, cross-word character
n-grams of the text before it was indexed. An example is shown in Table 2. In designing the
experiment, we used only the (weighted) ASRTEXT2006B and AUTOKEYWORD2004A2 fields.
      </p>
      <p>We evaluated MAP for retrieval at different n-gram sizes on the training topics prior to
submission, and found that 4-grams provided the best performance. Likewise, we evaluated different
2http://www.lemurproject.org/
3http://www.systran.co.uk/
4http://www.freetranslation.com/
weightings for the ASRTEXT2006B and AUTOKEYWORD2004A2 fields. Here we found the best
setting to be ASRTEXT2006B = 0.75 and AUTOKEYWORD2004A2= 0.25. These, then, are the
settings that we used in our officially submitted runs.
We evaluated field combination, as we may later wish to apply this technique to retrieving the
annotated portion of multimedia documents in a audio-visual archive. Combination was done
using the Indri query language, giving different fields different weights. The fields that we used
were MANUALKEYWORD, SUMMARY, ASRTEXT2006B, and AUTOKEYWORD2004A2.</p>
      <p>As with the n-gram experiments, we determined the optimal combination setting on the set
of 63 training topics that were provided, using MAP as our evaluation measure. We found that
the best weighting for monolingual retrieval was MANUALKEYWORD = 0.375, SUMMARY
= 0.375, ASRTEXT2006B = 0.125, and AUTOKEYWORD2004A2 = 0.125. For the cross-lingual
task, the automatic keywords gave no contribution to retrieval performance and the best weighting
was MANUALKEYWORD = 0.375, SUMMARY = 0.375 and ASRTEXT2006B = 0.25.
3</p>
    </sec>
    <sec id="sec-2">
      <title>Runs and Results</title>
      <p>This paper has described the setup and performance of the University of Amsterdam’s entry
in the CLEF CL-SR 2007 English retrieval task. We investigated the effect of using n-grams
to retrieve automatically generated text, finding that they decreased monolingual performance
but improved cross-lingual performance. Furthermore, we examined the effects of combining
manual and automatically generated text, and saw that both can be useful. We hope that the
lessons learned here will aid us in practice, and help us enhance search through Dutch audio-visual
archives.
Run ID
UvA 1 base
UvA 2 en4g
UvA 3 nl4g</p>
      <sec id="sec-2-1">
        <title>Type</title>
        <p>monolingual baseline
monolingual 4-grams
cross-lingual 4-grams</p>
        <sec id="sec-2-1-1">
          <title>UvA 4 enopt monolingual combination</title>
        </sec>
        <sec id="sec-2-1-2">
          <title>UvA 5 nlopt</title>
          <p>cross-lingual combination
unsubmitted run
monolingual
unsubmitted run
cross-lingual</p>
        </sec>
      </sec>
      <sec id="sec-2-2">
        <title>Fields</title>
        <p>ASRTEXT2006B
ASRTEXT2006B,
AUTOKEYWORD2004A2
ASRTEXT2006B,
AUTOKEYWORD2004A2
MANUALKEYWORD,
SUMMARY,
ASRTEXT2006B,
AUTOKEYWORD2004A2
MANUALKEYWORD,
SUMMARY,
ASRTEXT2006B,
AUTOKEYWORD2004A2
ASRTEXT2006B,
AUTOKEYWORD2004A2
ASRTEXT2006B,
AUTOKEYWORD2004A2
MAP
0.0430
0.0444</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Acknowledgments References</title>
      <p>This research was supported by the Netherlands Organisation for Scientific Research (NWO)
MUNCH project under project number 640.002.501.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>V.</given-names>
            <surname>Hollink</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kamps</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Monz</surname>
          </string-name>
          , and M. de Rijke.
          <article-title>Monolingual document retrieval for European languages</article-title>
          .
          <source>Inf. Retr.</source>
          ,
          <volume>7</volume>
          (
          <issue>1</issue>
          -2):
          <fpage>33</fpage>
          -
          <lpage>52</lpage>
          ,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>P.</given-names>
            <surname>McNamee</surname>
          </string-name>
          and
          <string-name>
            <given-names>J.</given-names>
            <surname>Mayfield</surname>
          </string-name>
          .
          <article-title>Character n-gram tokenization for European language text retrieval</article-title>
          .
          <source>Inf. Retr.</source>
          ,
          <volume>7</volume>
          (
          <issue>1</issue>
          -2):
          <fpage>73</fpage>
          -
          <lpage>97</lpage>
          ,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>M. F.</given-names>
            <surname>Porter</surname>
          </string-name>
          .
          <article-title>An algorithm for suffix stripping</article-title>
          .
          <source>In Readings in information retrieval</source>
          , pages
          <fpage>313</fpage>
          -
          <lpage>316</lpage>
          . Morgan Kaufmann Publishers Inc., San Francisco, CA, USA,
          <year>1997</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Jacques</given-names>
            <surname>Savoy</surname>
          </string-name>
          .
          <article-title>Report on CLEF-2003 multilingual tracks</article-title>
          . In Carol Peters, Julio Gonzalo,
          <string-name>
            <given-names>Martin</given-names>
            <surname>Braschler</surname>
          </string-name>
          , and Michael Kluck, editors,
          <source>CLEF</source>
          , volume
          <volume>3237</volume>
          of Lecture Notes in Computer Science, pages
          <fpage>64</fpage>
          -
          <lpage>73</lpage>
          . Springer,
          <year>2003</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>