<!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>UAEMex at ImageCLEF 2016:</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Handwritten Scanned Document Retrieval Task</string-name>
          <xref ref-type="aff" rid="aff2">2</xref>
          <xref ref-type="aff" rid="aff3">3</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          ,
          <addr-line>René Arnulfo García Hernández</addr-line>
        </aff>
        <aff id="aff1">
          <label>1</label>
          ,
          <addr-line>Yulia Ledeneva</addr-line>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Autonomous University of the State of Mexico (UAEMex)</institution>
          ,
          <country country="MX">Mexico</country>
        </aff>
        <aff id="aff3">
          <label>3</label>
          <institution>Miguel Ángel García Calderón</institution>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper describes the participation of the (UAEMex) at the ImageCLEF 2016 Handwritten Scanned Document Retrieval Task. We propose to use a skip-character text search method based on Longest Common Subsequence. Our system split all characters in query to find all Longest Common Subsequence in one line of text.</p>
      </abstract>
      <kwd-group>
        <kwd>Information Retrieval</kwd>
        <kwd>Longest Common Subsequence</kwd>
        <kwd>Free Text Search</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>1  </p>
    </sec>
    <sec id="sec-2">
      <title>Introduction</title>
      <p>
        This paper describes the free text search method used by UAEMex at the ImageCLEF
2016 [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] handwritten retrieval task [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. The 1st edition of the handwritten retrieval
challenge has one task targeted in free text search. Considering transcript text for
every character we use a skip-character text search method based on Longest
Common Subsequence (LCS) problem.
2  
      </p>
    </sec>
    <sec id="sec-3">
      <title>Fixed Gap Longest Common Subsequence</title>
      <p>
        The problem to extract LCS consists of given two sequences find the length of longest
subsequence present in both of them. Given a string, a subsequence of the string can
be obtained from the string by deleting none or some symbols [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] (not necessarily
consecutive ones). To extract non-consecutive subsequences, Iliopoulos [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] proposes
a variant to find the LCS, called Fixed Gap Longest Common Subsequence (FGLCS)
problem, where a value of k is the fixed gap constraint and the distance between two
consecutive matches is required to be limited to at most k+1. Figure 1 shows an
example of LCS and FGLCS searching.
The proposed method is based on FGLCS search and is divided into three phases. The
system is proposed for transcriptions of incomplete or non-existent words.
1.  Delete non-alphabetic characters in transcript file.
2.  Delete line breaks on every segment to get one line segment.
3.  Split line by every char.
At first step, each query is divided by a space, and then the FGLCS is searched in the
actual segment for every word in the query.
•   q = chars in query
Every FGLCS is revised to have the same order of words that in the query, in such
case, the confidence score is calculated using equation (1). The system considers that
a result is relevant if confidence is more than 0.5.
•   s = chars in the longest sequence
•   c = confidence
c =
#$ #$%
#
   
(1)
We prove confidence threshold with values 0.9, 0.8, 0.7, 0.6 and 0.5. The best
confidence threshold was 0.5.
3.4  
      </p>
      <sec id="sec-3-1">
        <title>Submitted Runs</title>
        <p>In this section, the nine free text search runs submitted by UAEMex are presented.
Considering bad transcribed words, we change gap value to retrieve more words,
however retrieval performance decrease.</p>
        <p>Run1: FGLCS search with gap = 0.</p>
        <p>Run2: FGLCS search with gap = 1.</p>
        <p>Run3: FGLCS search with gap = 2.</p>
        <p>Run4: FGLCS search with gap = 3.</p>
        <p>Run5: Union of Run1 + Run2.</p>
        <p>Run6: Union of Run1 + Run2 + Run3.</p>
        <p>Run7: Union of Run1 + Run3.</p>
        <p>Run8: Union of Run1 + Run2 + Run3 + Run4.
3.5  </p>
      </sec>
      <sec id="sec-3-2">
        <title>Results</title>
        <p>In this section, the results of submitted runs by UAEMex are presented. The results
with ‘-’ could not be analyzed. Only the measures based on segments are included,
and the ones for bounding boxes were omitted. The presented results are extracted
only using the n-best No.20 of the n-best providers by the organizers.
The results of the runs in development the following set of four metrics: Global
Average Precision (Segm_gAP), Mean Average Precision (Segm_mAP), Global
Normalized Discounted Cumulative Gain (Segm_gNDCG) and Mean Normalized
Discounted Cumulative Gain (Segm_mNDCG) have been used to evaluate the
accuracy of submissions (see Table 1 and Table2).
This paper presents results in free text search using LCS. We describe the joint
participation of the UAEMex at ImageCLEF 2016 Handwritten Scanned Document
Retrieval Task. The proposed method works with words of dictionary and
nonexistent words. There are big differences between the results of development set
(Table 1) and test set (Table 2).</p>
        <p>We assume we got bad results because we only use one n-best file provided by the
organizers.</p>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.  
          <string-name>
            <given-names>C. S.</given-names>
            <surname>Iliopoulos</surname>
          </string-name>
          and
          <string-name>
            <given-names>M. S.</given-names>
            <surname>Rahman</surname>
          </string-name>
          , “
          <article-title>Algorithms for computing variants of the longest common subsequence problem,” Theoretical Computer Science</article-title>
          , vol.
          <volume>395</volume>
          , pp.
          <fpage>255</fpage>
          -
          <lpage>267</lpage>
          , (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>  H. Lin</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Lu</surname>
            and
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Fang</surname>
          </string-name>
          ,
          <article-title>"An optimal algorithm for the longest common subsequence problem,"</article-title>
          <source>Parallel and Distributed Processing</source>
          ,
          <year>1991</year>
          .
          <source>Proceedings of the Third IEEE Symposium on</source>
          , Dallas, TX, pp.
          <fpage>630</fpage>
          -
          <lpage>639</lpage>
          (
          <year>1991</year>
          ). doi:
          <volume>10</volume>
          .1109/SPDP.
          <year>1991</year>
          .
          <volume>21820</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.   Villegas,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Müller</surname>
          </string-name>
          ,
          <string-name>
            <surname>H.</surname>
          </string-name>
          , Seco de Herrera,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Schaer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            ,
            <surname>Bromuri</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            ,
            <surname>Gilbert</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Piras</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Yan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            ,
            <surname>Ramisa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Dellandrea</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            ,
            <surname>Gaizauskas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            ,
            <surname>Mikolajczyk</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            ,
            <surname>Puigcerver</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Toselli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.H.</given-names>
            ,
            <surname>Sánchez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.A.</given-names>
            ,
            <surname>Vidal</surname>
          </string-name>
          , E.:
          <article-title>General Overview of ImageCLEF at the CLEF 2016 Labs</article-title>
          . Lecture Notes in Computer Science. Springer International Publishing (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.   Villegas,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Puigcerver</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Toselli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.H.</given-names>
            ,
            <surname>Sánchez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.A.</given-names>
            ,
            <surname>Vidal</surname>
          </string-name>
          , E.:
          <article-title>Overview of the ImageCLEF 2016 Handwritten Scanned Document Retrieval Task</article-title>
          .
          <source>In: CLEF2016 Working Notes. CEUR Workshop Proceedings</source>
          , CEUR-WS.org, Évora,
          <source>Portugal (September 5-8</source>
          <year>2016</year>
          ).
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>