<!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>Dublin City University at CLEF 2006: Experiments for the ImageCLEF Photo Collection Standard Ad Hoc Task</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Kieran Mc Donald</string-name>
          <email>Kieran.McDonald@computing.dcu.ie</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Gareth J. F. Jones</string-name>
          <email>Gareth.Jones@computing.dcu.ie</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Centre for Digital Video Processing &amp; School of Computing</institution>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Dublin City University</institution>
          ,
          <addr-line>Dublin 9</addr-line>
          ,
          <country country="IE">Ireland</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>We provide a technical description of our submission to the CLEF 2006 Cross Language Image Retrieval(ImageCLEF) Photo Collection Standard Ad Hoc task. We performed monolingual and cross language retrieval of photo images using photo annotations with and without feedback, and also a combined visual and text retrieval approach. Topics are translated into English using the Babelfish online machine translation system. Our text runs used the BM25 algorithm, while our visual approach used simple low-level features with matching based on the Jeffrey Divergence measure. Our results consistently indicate that the fusion of text and visual features is best for this task, and that performing feedback for text consistently improves on the baseline non-feedback BM25 text runs for all language pairs.</p>
      </abstract>
      <kwd-group>
        <kwd>Cross Language Image Retrieval</kwd>
        <kwd>Photo Search</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Dublin City University’s participation in the CLEF 2006 ImageCLEF Photo Collection Ad Hoc
task adopted standard text retrieval using image metadata and text search topics, with and without
pseudo relevance feedback (PRF) and a combination of text retrieval with low-level visual feature
matching. The underlying text retrieval system is based on a standard Okapi model for document
ranking and PRF [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. Experiments are reported for monolingual English and German retrieval
and bilingual searching with a range of topic languages. Topics were translated for cross-language
retrieval using the online Babelfish machine translation engine. Three sets of experiments are
reported: the first establishes baseline text retrieval performance without PRF, the second explore
∗Now at MSN Redmond, U.S.A.
the effectiveness of PRF for text retrieval with this task, and finally the third set combines text
retrieval and visual feature matching.
      </p>
      <p>The results of our experiments demonstrate that PRF improves on the baseline in all cases
with respect to both average precision and the number of relevant documents retrieved. Combined
text retrieval with visual feature matching gives a further improvement in both of these retrieval
effectiveness measures in all cases.</p>
      <p>This remainder of this paper is organised as follows: Section 2 briefly outlines the details of our
standard retrieval system and describes our novel PRF method, Section 3 details our submitted
runs, Section 4 gives results and analysis of our experiments, and finally Section 5 concludes the
paper.
2</p>
    </sec>
    <sec id="sec-2">
      <title>System Description</title>
      <p>The introduction of a new collection for the CLEF 2006 Ad Hoc Photo retrieval task meant that
there was no previous retrieval test collection to use for system development and tuning for these
documents. We thus used the previous ImageCLEF St Andrew’s collection and related experiments
on the TRECVID datasets to guide our selection of fusion methods and retrieval parameters for
our experiments.
2.1</p>
      <sec id="sec-2-1">
        <title>Text Retrieval</title>
        <p>
          The contents of the structured annotation for each photo (TITLE, DESCRIPTION, NOTES,
LOCATION and DATE fields) were collapsed into a flat document representation. Documents
and search topics were processed to remove stopwords from the standard SMART list [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ], and
suffix stripped using the Snowball implementation of Porter stemming for the English language
[
          <xref ref-type="bibr" rid="ref3">3</xref>
          ] [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ]. While for the German language topics and documents were stopped and stemmed using
the Snowball German stemmer and stopword list [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ].
        </p>
        <p>
          Based on these development experiments, the text feature was matched using the BM25
algorithm with parameters: k1 = 1.0, k2 = 0, and b = 0.5. When using relevance feedback, the top
15 documents were assumed pseudo-relevant and the top scoring 10 expansion terms calculated
using the Robertson selection value [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ] were added to the original topic. The original query terms
were upweighted by a factor of 3.5 compared to the feedback query expansion terms.
2.2
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>Visual Retrieval</title>
        <p>
          The visual features were matched using the Jeffrey Divergence (a.k.a. Jensen-Shannon distance)
matching function [
          <xref ref-type="bibr" rid="ref5 ref6">5, 6</xref>
          ]. We can interpret Jeffrey Divergence as measuring the efficiency of
assuming that a common source generated both distributions – the query and the document.
        </p>
        <p>
          Three following visual features were used: HSV colour histogram with 16x4x4 quantisation
levels on a 5x5 regional image grid, Canny 8 edge + 1 bin for non-edges feature for each region of
a 5x5 regional image grid, and a DCT histogram feature based on the first 5 coefficients quantised
each into 3 values for a 3x3 regional image grid. More details on these features can be found in
[
          <xref ref-type="bibr" rid="ref7">7</xref>
          ].
        </p>
        <p>
          The results for the three visual features were combined using the weighted variant (i.e. linear
interpolation) of the CombSUM fusion operator [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ]. The scores for each feature were normalised
between 0 and 1 and then the weighted sum was calculated for each document across the three
features. The weights used for the colour, edge and DCT feature were respectively: 0.50, 0.30 and
0.20.
        </p>
        <p>
          The results from the two visual examples for each topic were fused using the CombMAX fusion
operator, which took the maximum of the normalised scores from each separate visual result list
[
          <xref ref-type="bibr" rid="ref8">8</xref>
          ]. Scores were first normalised in the separate visual result sets for each topic image to lie
between 0 and 1.
2.3
        </p>
      </sec>
      <sec id="sec-2-3">
        <title>Text and Visual Retrieval Result Combination</title>
        <p>Text and visual runs were fused using the weighted CombSUM fusion operator with weights 0.70
and 0.30 for text and image respectively. Scores were again normalised to lie between 0 and 1 in
the separate text and visual result sets before fusion.
3</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Description of runs submitted</title>
      <p>
        We submitted two mono-lingual runs for German and English and cross language runs for both
these languages. For English photo annotations we submitted runs where the queries were in
Russian, Portuguese, Dutch, Japanese, Italian, French, Spanish, German, Chinese. While for
German photo annotations we only ran cross language queries for French and English queries. The
queries were translated to the respective document target language using the online Babelfish[
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]
system based on SysTran.
      </p>
      <p>For each language pair including the monolingual runs we evaluated three different approaches:
text only queries with no feedback and with feedback, and a combined visual and text (with text
feedback) run. This gave us a total of 39 runs submitted.
4</p>
    </sec>
    <sec id="sec-4">
      <title>Summary of Experimental Results</title>
      <p>Results for our runs are shown in Table 1 From the table we can see that our multilingual fused text
and visual submission performed very well, achieving either the second or top rank of submissions
for each language pair in terms of Mean Average Precision (MAP). Text feedback increased the
text only results in terms of MAP by on average 16.0%. Fusion with visual results increased
these results on average by a further 9.2%. Our experiments produced consistent evidence across
language pairs that text feedback and fusion with visual features is beneficial in Image Photo
search.</p>
      <p>Our monolingual English runs with text feedback and fused visual results performed relatively
poorly, achieving 8th of 50 submissions in terms of MAP. The increased competition in the more
popular monolingual English category relative to the multilingual categories as well as our limited
approach in tuning a single parameter selection for all our submitted runs probably accounts for
the relative decrease in effectiveness of our approach in the English monolingual category. Our
system parameters were tuned for multilingual topics and in future we should tune separately for
the monolingual case. For monolingual searches we would expect the effectiveness of the initial
query to be higher than in the multilingual case, and therefore both the appropriate feedback
and fusion parameters for combining text and visual results may differ significantly compared to
the multilingual case. In our case, the initial English monolingual text query under-performed,
but was increased by 20.3% by the text feedback approach we employed. This result was further
improved by only 4% through fusion with visual results. We suspect that the optimal parameters
for BM25 may differ significant between the monolingual and multilingual cases.</p>
      <p>Our results consistently show that our fused text and image retrieval submission outperforms
our text-only methods. The average relative improvement in MAP was 9.2%, maximum was
18.9% and minimum was 4.0%. The evaluation measures Mean Average Precision, total relevant
documents retrieved and precision at document cut-offs 10, 20, 30 are improved for all tested
language pairs when the text results are fused with image results compared to text alone. This
indicates that our fusion approach is stable and produces reliable results. We suspect that our
fusion parameters were a bit conservative in the importance given to the visual results for this
task. But on the other hand, if we increase the importance of visual results, we may sacrifice some
of the stability and consistency of our results. This will be investigated in followup experiments.</p>
      <p>Our results also consistently show that our text runs are improved for all language pairs tested
when using text feedback compared to without it. This is true for all language pairs and evaluation
measures in Table 1, except for precision at a cut-off of 10 documents for English queries against
German documents. The decrease in precision is small and insignificant in this case and goes</p>
      <p>Media</p>
      <p>MAP</p>
      <p>Rank
4.0%
20.3%
against the overwhelming trend established by our results. At an average relative increase in MAP
of 16.0%, a maximum of 28.8% and a minimum of 9.9% for the language pairs, the importance of
text feedback is well established for text-based photo search by our results.</p>
      <p>The lack of relevant tuning data because of the significant difference between this year and
previous years ImageCLEF photo content and descriptions may have led to a less than optimal
choice of parameter for fusing visual and text results. Post-ImageCLEF experiments should be
able to quantify the improvements that can be made with better tuning or alternative fusion
strategies.
5</p>
    </sec>
    <sec id="sec-5">
      <title>Conclusions</title>
      <p>Our results for the ImageCLEF 2006 photo retrieval task show that fusing text and visual results
achieves better effectiveness than text alone. We also demonstrated that PRF is important for
improving the effectiveness of the text retrieval model with consistent improvement in results
across language pairs. Future experiments will investigate fusion of text and visual features more
deeply, since we believe this still has more to offer than we have shown in our current experiments.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <surname>Robertson</surname>
            ,
            <given-names>S. E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Walker</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jones</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hancock-Beaulieu</surname>
            ,
            <given-names>M. M.</given-names>
          </string-name>
          , and
          <string-name>
            <surname>Gatford</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,:
          <article-title>Okapi at TREC-3</article-title>
          . In D.K. Harman, editor,
          <source>Proceedings of the Third Text REtrieval Conference (TREC-3)</source>
          , pages
          <fpage>109</fpage>
          -
          <lpage>126</lpage>
          . NIST,
          <year>1995</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>[2] SMART , ftp://ftp.cs.cornell.edu/pub/smart/</mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>[3] Snowball toolkit http://snowball.tartarus.org/</mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <surname>Porter</surname>
            ,
            <given-names>M. F.</given-names>
          </string-name>
          :
          <article-title>An algorithm for suffix stripping</article-title>
          .
          <source>Program</source>
          <volume>14</volume>
          :
          <fpage>10</fpage>
          -
          <lpage>137</lpage>
          ,
          <year>1980</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <surname>Rao</surname>
            ,
            <given-names>C. R.</given-names>
          </string-name>
          : Diversity:
          <article-title>Its measurement, decomposition, apportionment and analysis</article-title>
          ,
          <source>Sankyha: The Indian Journal of Statistics</source>
          , 44(A):
          <fpage>1</fpage>
          -
          <lpage>22</lpage>
          ,
          <year>1982</year>
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          :
          <article-title>Divergence measures based on the Shannon entropy</article-title>
          ,
          <source>IEEE Transactions on Information Theory</source>
          ,
          <volume>37</volume>
          (
          <issue>1</issue>
          ):
          <fpage>145</fpage>
          -
          <lpage>151</lpage>
          ,
          <year>1991</year>
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <surname>McDonald</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          :
          <article-title>Discrete Language Models for Video Retrieval</article-title>
          ,
          <source>Ph.D. Thesis</source>
          , Dublin City University,
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <surname>Fox</surname>
            ,
            <given-names>E.A.</given-names>
          </string-name>
          and
          <string-name>
            <surname>Shaw</surname>
            ,
            <given-names>J.A.</given-names>
          </string-name>
          :
          <article-title>Combination of multiple searches</article-title>
          ,
          <source>Proceedings of the Third Text REtrieval Conference (TREC-1994)</source>
          ,
          <fpage>243</fpage>
          -
          <lpage>252</lpage>
          ,
          <year>1994</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>[9] Babelfish http://babelfish.altavista.com/</mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>