<!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>Ghent University-iMinds at MediaEval 2013: An Unsupervised Named Entity-based Similarity Measure for Search and Hyperlinking</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Tom De Nies</string-name>
          <email>tom.denies@ugent.be</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Wesley De Neve</string-name>
          <email>wesley.deneve@ugent.be</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Erik Mannens</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Rik Van de Walle</string-name>
          <email>rik.vandewalle@ugent.be</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Ghent University - iMinds - Multimedia Lab</institution>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Korea Advanced Institute of Science and Technology (KAIST) - IVY Lab</institution>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2013</year>
      </pub-date>
      <fpage>18</fpage>
      <lpage>19</lpage>
      <abstract>
        <p>In this paper, we describe our approach to the Search and Hyperlinking task at the MediaEval 2013 benchmark. This task focuses on video retrieval and linking in the context of a large and rich dataset provided by the BBC. Our approach makes use of one of three types of audio transcripts, enriched with Named Entities. To compute similarity, we adapt the Jaccard metric to use Named Entities. This results in an unsupervised and computationally inexpensive way of searching and linking multimedia content.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. INTRODUCTION</title>
      <p>
        The Search and Hyperlinking task at MediaEval 2013 [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]
provides a benchmark for retrieval and linking of video
segments, constructed and evaluated with the aid of
crowdsourcing and a dataset of broadcast material provided by
the BBC. The dataset consists of 1260 hours of video,
corresponding textual metadata, and manually and
automatically generated transcripts for the speech in each video. The
task consists of two parts: the search task and the linking
task. For the search task, 50 known-item queries are
provided, for which the corresponding video segments need to
be retrieved. For the linking task, 98 anchor segments are
provided, for which a ranked list of related segments needs
to be created, which is then evaluated using Human
Intelligence Tasks (HITs). For more details about the task, we
refer to the corresponding overview paper [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ].
      </p>
      <p>
        For our approach, we only make use of the transcripts
provided with the dataset. For each video, three types of
transcripts are provided: human-generated subtitles, and two
ASR transcripts, one provided by LIUM [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], and one
provided by LIMSI [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. We use the timing information of these
transcripts to divide the videos into time-based segments.
Next, each of these segments is enriched using a Named
Entity Recognition (NER) service. These Named Entities
(NEs) are then used to facilitate the search and linking
process. In the next section, we describe each of these steps in
detail.
      </p>
      <p>These research activities were funded by Ghent University,
iMinds, the IWT Flanders, the FWO-Flanders, and the
European Union.
2.</p>
    </sec>
    <sec id="sec-2">
      <title>PROPOSED APPROACH</title>
      <p>Our approach consists of two main phases: ingestion and
run execution.</p>
      <p>
        As it is time consuming, the ingestion phase is performed
before the runs are executed. It has three steps: content
representation, segmentation, and enrichment. As content
representation for the videos, we use one of the three
provided transcripts, either the subtitles, LIUM transcripts, or
LIMSI transcripts, selected at runtime. For the
segmentation step, the timing information of the transcripts is
used to divide the videos into segments. Due to the
success of time-based segmentation in the 2012 benchmark [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ],
we choose to employ xed-length temporal segments of L
seconds (in our submitted runs, L = 30). Note that the
actual length of these segments might vary, due to silences
and non-speech fragments in the audio. Each of these
segments is then enriched by extracting NEs from it using an
NER service. In our case, the annotation feature of
DBpedia Spotlight1 is used to extract all types of NEs it can
nd. As this is a network-based service, this is the most
time consuming step in our approach.
      </p>
      <p>The execution phase consists of two steps: similarity
calculation and result selection. In case of the search task,
the similarity between the queries and the segments in the
dataset is calculated, whereas in case of the linking task,
this is done between the anchor segments and the other
segments in the dataset. To calculate the similarity, we opt for
a completely unsupervised similarity metric. This way, no
computationally expensive training step is necessary, that
would have to be repeated upon expansion of the dataset,
as would be the case when using a supervised similarity
metric. In our case, we use the Jaccard metric, applied to NEs.
We calculate the similarity between two enriched documents
(be it segments, videos, or queries) A and B as follows:
Sim(A; B) = jfe : e 2 E(A) \ E(B)gj ;
jfe : e 2 E(A) [ E(B)gj
(1)
where E(A) and E(B) denote the sets of extracted NEs from
document A and B, respectively. Note that no NEs could be
extracted from some of the queries provided for the search
task, due to their short length. When this is the case, we
revert to a fallback mechanism, using a slightly altered
metric. The fallback mechanism consists of creating a set of
keywords for both the query and segments using a naive
keyword extraction algorithm. This algorithm extracts all
1http://spotlight.dbpedia.org/
distinct words in the query or segment as keywords, with all
stop words2 removed. We then employ the same calculation
as in Equation 1, with the di erence that E(A) and E(B)
now represent the sets of keywords. For each segment of
length L, the optimal result segment length is determined,
by maximizing the similarity score for x consecutive
segments, with x = 1; 2; :::; W for a maximum window size W
and maximum segment length Lmax (in our case, W = 4,
and Lmax = 2 minutes). Finally, the N segments with the
highest similarity score are selected and ranked, to be
returned as results of the run (in case of our runs for the search
task, N = 500; in case of the linking task, N = 20).</p>
    </sec>
    <sec id="sec-3">
      <title>RELATED WORK</title>
      <p>
        There are other approaches found in literature that make
use of NEs, sometimes dubbed as \concepts", for the purpose
of measuring similarity between documents. These concepts
are mostly used to determine weighting schemes, such as
CF-IDF [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], or used as direct input for a similarity metric,
such as NESM [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. For our Search and Hyperlinking task
submission 2012 we used a NE-based weighting scheme as a
component in a supervised late fusion approach [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].
      </p>
    </sec>
    <sec id="sec-4">
      <title>EXPERIMENTS AND EVALUATION</title>
      <p>
        We submitted ve runs in total, three for the search task,
and two for the linking task. Our three runs for the search
task were performed using the approach described in Sect. 2,
with each run using one of the three transcript forms:
subtitles (S), LIUM (U), or LIMSI (I). Before the runs, the
queries were enriched with NEs using the same NER service
as used for the segments. Then, the similarity between the
queries and all the segments in the dataset was computed
as described in Sect. 2. In Table 1, we present the mean
reciprocal rank (MRR), mean generalized average precision
(mGAP), and mean average segment precision (MASP) of
the three search runs. For more information about these
evaluation metrics, we refer to the task overview paper [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ].
      </p>
      <sec id="sec-4-1">
        <title>Run type I U</title>
        <p>S</p>
        <p>MRR
0.0322
0.0546
0.149
mGAP
0.0222
0.0322
0.0906</p>
        <p>MASP
0.0268
0.0515
0.123</p>
        <p>For the linking task, we submitted two runs, each
making use of the subtitles, since these lead to the best result
in the search task. The rst run (A) was performed using
only the segment that contained the anchor itself as input,
whereas the second run (C) also made use of the context
of surrounding segments, de ned by the user who chose the
anchor. The runs were evaluated by human users, resulting
in precision at rank x 2 f5; 10; 20g (Px), and mean average
precision (MAP). The results are shown in Table 2.</p>
      </sec>
      <sec id="sec-4-2">
        <title>Run type A</title>
        <p>C
MAP
0.0375
0.0459
0.3200
0.3867
P10
0.2800
0.3500
P20
0.1667
0.2050</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>DISCUSSION AND FUTURE WORK</title>
      <p>
        When we compare the results of both tasks with those of
our (partially) supervised late fusion approach, submitted to
the benchmark of 2012 [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ], we observe that for both tasks, we
obtain less accurate results with our unsupervised approach
than with a supervised one, as could be expected. Note that
these two years are not entirely comparable, since a di
erent dataset was used. When inspecting the results of the
2013 linking task, we see that for our second run (C), 35%
of the top ten (P10) and 38.67% of the top ve links found
(P5) are evaluated as relevant to the anchor segment, which
is a promising result. This also suggests that considering
more context leads to better link quality. The unsupervised
approach is certainly more exible and computationally
efcient, considering that video datasets typically receive
frequent additions and removals. With a supervised approach,
this would result in frequent re-training and re-indexing.
      </p>
      <p>In future work, we aim to experiment further with
unsupervised similarity measures, adapted to work with NEs.
Also, the in uence of the NER service used needs to be
evaluated. Other, more accurate NER services than
DBpedia Spotlight exist. However, their free versions are mostly
limited in number of requests, making them less suitable for
datasets of this magnitude, without signi cant costs.
Application of our approach to multilingual content also remains
an important challenge we aim to address. We also aim to
exploit more of the semantic features of NEs, taking
advantage of the similarity between individual concepts.
6.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <surname>T. De Nies</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Debevere</surname>
            ,
            <given-names>D. Van</given-names>
          </string-name>
          <string-name>
            <surname>Deursen</surname>
          </string-name>
          ,
          <string-name>
            <surname>W. De Neve</surname>
          </string-name>
          , E. Mannens, and R. Van de Walle. Ghent University-IBBT at
          <article-title>MediaEval 2012 Search and Hyperlinking: Semantic Similarity using Named Entities</article-title>
          .
          <source>In MediaEval 2012 Workshop</source>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>M.</given-names>
            <surname>Eskevich</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. J.</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Aly</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. J.</given-names>
            <surname>Ordelman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Nadeem</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Guinaudeau</surname>
          </string-name>
          , G. Gravier,
          <string-name>
            <given-names>P.</given-names>
            <surname>Sebillot</surname>
          </string-name>
          ,
          <string-name>
            <surname>T. De Nies</surname>
          </string-name>
          , et al.
          <article-title>Multimedia information seeking through search and hyperlinking</article-title>
          .
          <source>In 3rd ACM conference on International conference on multimedia retrieval (ICMR)</source>
          , pages
          <fpage>287</fpage>
          {
          <fpage>294</fpage>
          . ACM,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>M.</given-names>
            <surname>Eskevich</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. J. F..</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Aly</surname>
          </string-name>
          , and
          <string-name>
            <given-names>R.</given-names>
            <surname>Ordelman</surname>
          </string-name>
          .
          <article-title>The Search and Hyperlinking Task at MediaEval 2013</article-title>
          . In MediaEval 2013 Workshop, Barcelona, Spain, October
          <volume>18</volume>
          -19
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>F.</given-names>
            <surname>Goossen</surname>
          </string-name>
          , W. IJntema,
          <string-name>
            <given-names>F.</given-names>
            <surname>Frasincar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Hogenboom</surname>
          </string-name>
          , and
          <string-name>
            <given-names>U.</given-names>
            <surname>Kaymak</surname>
          </string-name>
          .
          <article-title>News personalization using the CF-IDF semantic recommender</article-title>
          .
          <source>In Proceedings of the International Conference on Web Intelligence, Mining and Semantics, page 10. ACM</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>L.</given-names>
            <surname>Lamel</surname>
          </string-name>
          and
          <string-name>
            <given-names>J.-L.</given-names>
            <surname>Gauvain</surname>
          </string-name>
          .
          <source>Speech Processing for Audio Indexing. Advances in Natural Language Processing. (LNCS 5221)</source>
          , pages
          <fpage>4</fpage>
          {
          <fpage>15</fpage>
          ,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>S.</given-names>
            <surname>Montalvo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Fresno</surname>
          </string-name>
          , and
          <string-name>
            <surname>R.</surname>
          </string-name>
          <article-title>Mart nez. NESM: a Named Entity based Proximity Measure for Multilingual News Clustering</article-title>
          .
          <source>Procesamiento del lenguaje natural</source>
          ,
          <volume>48</volume>
          :
          <fpage>81</fpage>
          {
          <fpage>88</fpage>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>A.</given-names>
            <surname>Rousseau</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Bougares</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Deleglise</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Schwenk</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Y.</given-names>
            <surname>Esteve</surname>
          </string-name>
          .
          <article-title>LIUM's systems for the IWSLT 2011 Speech Translation Tasks</article-title>
          .
          <source>In Proceedings of the IWSLT Workshop</source>
          , San Francisco, CA,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>