<!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>Site Search Using Profile-Based Document Summarisation</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Azhar Alhindi</string-name>
          <email>ahalhi@essex.ac.uk</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Udo Kruschwitz</string-name>
          <email>udo@essex.ac.uk</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Chris Fox</string-name>
          <email>foxcj@essex.ac.uk</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>University of Essex</institution>
          ,
          <addr-line>Colchester</addr-line>
          ,
          <country country="UK">UK</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Text summarisation is the process of distilling the most important information from a source to produce an abridged version for a particular user or task. This demo presents the use of pro le-based summarisation to provide contextualisation and interactive support for site search and enterprise search. We employ log analysis to acquire continuously updated pro les to provide pro le-based summarisations of search results. These pro les could be capturing an individual's interests or those of a group of users. Here we look at acquiring pro les for groups of users.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>MOTIVATION</title>
      <p>
        Summarisation is a broad area of research [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. The sort
of information contained in a summary di ers according to
the mechanism used in the summarisation process: It may
highlight the basic idea (generic summarisation), or it may
highlight the speci c user's individual area of interest
(personalised summarisation). One of the techniques used to
achieve personalisation is user pro ling. User pro les may
include the preferences or interests of a single user or a group
of users and may also include demographic information [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
Normally, a user pro le contains topics of interest to that
single user. We are interested in capturing pro les not of
single but groups of users.
      </p>
      <p>
        We utilise query and click logs to acquire a pro le
reecting the population's search patterns and this pro le is
being automatically updated in a continuous learning cycle.
We are then applying the acquired pro les in the
summarisation process to support users searching a document
collection. The potential of personalised summarisation over
generic summaries has already been demonstrated, e.g. [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ],
but summarisation of Web documents is typically based on
the query rather than a full pro le, e.g. [
        <xref ref-type="bibr" rid="ref11 ref9">11, 9</xref>
        ]. Our
speci c interest lies in enterprise search which is di erent from
Web search and has attracted less attention [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. The bene t
of this context is that we can expect a more homogeneous
population of searchers who are likely to share interests and
Permission to make digital or hard copies of all or part of this work for
personal or classroom use is granted without fee provided that copies are
not made or distributed for profit or commercial advantage and that copies
bear this notice and the full citation on the first page. To copy otherwise, to
republish, to post on servers or to redistribute to lists, requires prior specific
permission and/or a fee.
      </p>
      <p>DIR 2013, April 26, 2013, Delft, The Netherlands.
.
information needs. Our hypothesis is that pro le-based
summarisation can help a user in this process and guide the user
to the right documents more easily (e.g. by presenting the
summaries instead of or alongside snippets).
2.</p>
    </sec>
    <sec id="sec-2">
      <title>METHODS AND EXAMPLES</title>
      <p>
        The demo presents an integrated Solr-based search
system applying a number of di erent methods for building
summaries for search results. The rst two algorithms were
designed for traditional (generic) summarisation, and they
represent widely used baselines, e.g. [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ]. The other three
are all variations of an approach that has been proposed
in the literature for building an adaptive community
prole/domain model, a "biologically inspired model based on
ant colony optimisation applied to query logs as an adaptive
learning process" [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. The approach is simple to implement,
the idea here is that query logs are segmented into sessions
and then turned into a graph structure. Figure 1 gives an
example of part of the pro le as it has been derived from
our query logs. We used the log les collected on the
existing search engine over a period of three years1 to bootstrap
this ant colony optimisation (ACO) model, i.e. our pro le.
The example illustrates the domain-speci c nature of the
derived pro les, e.g. the University library is named after
Albert Sloman.
      </p>
      <p>
        A pro le-based (extractive) summary of a document is
then generated by turning the pro le into a at list of terms
(we use three di erent methods to do this as explained
further down) and selecting those sentences from the document
1More than 1.5 million queries, described in more detail
elsewhere [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]
that are most similar to the pro le using cosine similarity.
Figure 2 shows an architectural diagram for our pro le-based
summarisation system. Following DUC 2002 convention we
select 100-word abstracts [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. This gives us the following ve
methods:
1. Random: Selects sentences from the document
randomly [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ].
2. Centroid: A centroid-based approach to
summarisation [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]. This algorithm takes into account
rstsentence overlap and positional value, which are then
used to generate a coherent summary.
3. ACO: A query graph built by processing the log data
according to [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. The entire model is turned into a at
list of terms for summarisation.
4. ACO trimmed: Starting with ACO we trim all those
edges whose weights fall below the overall average weight
of an edge. The remaining model is turned into a at
list of terms for summarisation.
5. ACO query re nements: The list of terms used for
summarisation are all those that are directly linked to
the query node in the ACO model.
      </p>
      <p>Note that ACO and ACO trimmed are
query-independent as they are using the entire model to generate the
summary, whereas ACO query re nements is
query-speci c (for the frequently submitted query \library" the
selected terms are library, albert sloman library, library
homepage, library opening times and catalogue, see Figure 1).</p>
      <p>To illustrate the di erent summaries obtained using three
of the summarisation methods we apply the methods to the
University of Essex Library homepage2 and get the following
summaries:
Random: We provide you with rst class library
facilities to complement and assist your studies. The
Library allows you to access more than one million
books, periodicals and micro lms. Our collections
covering Latin America, Russia and Eastern Europe are
of national signi cance. Viewing facilities for DVDs
and videos are also available.</p>
      <p>Centroid: We provide you with rst class library
facilities to complement and assist your studies. You can
nd out more by accessing our University library
services. Our Albert Sloman Library is just a few minutes'
walk from teaching buildings and student
accommodation at our Essex Campus.</p>
      <p>ACO query re nements: In addition, 110 networked
PCs and terminals provide access to over 47,000
online journals, databases, e-books and library catalogues.
Students at our Essex Campus can visit the Albert
Sloman Library or borrow books from its collection via a
daily dispatch service. The Albert Sloman Library has
long opening hours, a total of 84 hours over seven days
a week during term and 42.5 to 84 hours in vacations.</p>
      <p>
        Obviously, the actual usefulness of such summaries can
only be assessed in a realistic search setting. In a pilot study
we found that the ACO-based summaries have the potential
of outperforming the di erent baselines [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. A task-based
evaluation using TREC Interactive Track guidelines is
currently being conducted. As the immediate next step, we are
interested in investigating how the pro le can be integrated
into multi-document summarisation.
      </p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <surname>M-D. Albakour</surname>
            ,
            <given-names>U.</given-names>
          </string-name>
          <string-name>
            <surname>Kruschwitz</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Nanas</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Song</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Fasli</surname>
          </string-name>
          , and
          <string-name>
            <surname>A. De Roeck</surname>
          </string-name>
          .
          <article-title>Exploring ant colony optimisation for adaptive interactive search</article-title>
          .
          <source>In Proceedings of ICTIR</source>
          , pages
          <volume>213</volume>
          {
          <fpage>224</fpage>
          . Springer,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>A.</given-names>
            <surname>Alhindi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>U.</given-names>
            <surname>Kruschwitz</surname>
          </string-name>
          , and
          <string-name>
            <given-names>C.</given-names>
            <surname>Fox</surname>
          </string-name>
          .
          <article-title>A pilot study on using pro le-based summarisation for interactive search assistance</article-title>
          .
          <source>In Proceedings of ECIR</source>
          , pages
          <volume>672</volume>
          {
          <fpage>675</fpage>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <surname>A.</surname>
          </string-name>
          <article-title>D az and P. Gervas. User-model based personalized summarization</article-title>
          .
          <source>Information Processing &amp; Management</source>
          ,
          <volume>43</volume>
          (
          <issue>6</issue>
          ):
          <volume>1715</volume>
          {
          <fpage>1734</fpage>
          ,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>S.</given-names>
            <surname>Gauch</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Speretta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Chandramouli</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <surname>A. Micarelli.</surname>
          </string-name>
          <article-title>User pro les for personalized information access</article-title>
          .
          <source>The Adaptive Web</source>
          , pages
          <volume>54</volume>
          {
          <fpage>89</fpage>
          ,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>D.</given-names>
            <surname>Hawking</surname>
          </string-name>
          . Enterprise Search. In R. Baeza-Yates and
          <string-name>
            <given-names>B.</given-names>
            <surname>Ribeiro</surname>
          </string-name>
          -Neto, editors,
          <source>Modern Information Retrieval</source>
          , pages
          <volume>641</volume>
          {
          <fpage>683</fpage>
          .
          <string-name>
            <surname>Addison-Wesley</surname>
          </string-name>
          ,
          <source>2nd edition</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>U.</given-names>
            <surname>Kruschwitz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Lungley</surname>
          </string-name>
          ,
          <string-name>
            <surname>M-D. Albakour</surname>
            , and
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Song</surname>
          </string-name>
          .
          <article-title>Deriving Query Suggestions for Site Search</article-title>
          . JASIST,
          <year>2013</year>
          . Forthcoming.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>C.Y.</given-names>
            <surname>Lin</surname>
          </string-name>
          and
          <string-name>
            <given-names>E.</given-names>
            <surname>Hovy</surname>
          </string-name>
          .
          <article-title>Automatic evaluation of summaries using n-gram co-occurrence statistics</article-title>
          .
          <source>In Proceedings of HLT-NAACL</source>
          , pages
          <volume>71</volume>
          {
          <fpage>78</fpage>
          .
          <string-name>
            <surname>ACL</surname>
          </string-name>
          ,
          <year>2003</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>A.</given-names>
            <surname>Nenkova</surname>
          </string-name>
          and
          <string-name>
            <given-names>K.</given-names>
            <surname>McKeown</surname>
          </string-name>
          .
          <article-title>Automatic summarization</article-title>
          . Now Publishers,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>S.</given-names>
            <surname>Park</surname>
          </string-name>
          .
          <article-title>Personalized summarization agent using non-negative matrix factorization</article-title>
          .
          <source>PRICAI 2008: Trends in Arti cial Intelligence</source>
          , pages
          <fpage>1034</fpage>
          {
          <fpage>1038</fpage>
          ,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>D.R.</given-names>
            <surname>Radev</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Jing</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Stys</surname>
          </string-name>
          , and
          <string-name>
            <given-names>D.</given-names>
            <surname>Tam</surname>
          </string-name>
          .
          <article-title>Centroid-based summarization of multiple documents</article-title>
          .
          <source>Information Processing &amp; Management</source>
          ,
          <volume>40</volume>
          (
          <issue>6</issue>
          ):
          <volume>919</volume>
          {
          <fpage>938</fpage>
          ,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>C.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Jing</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , and
          <string-name>
            <given-names>H.J.</given-names>
            <surname>Zhang</surname>
          </string-name>
          .
          <article-title>Learning query-biased web page summarization</article-title>
          .
          <source>In Proceedings of CIKM</source>
          ,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>R.</given-names>
            <surname>Yan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.Y.</given-names>
            <surname>Nie</surname>
          </string-name>
          , and
          <string-name>
            <given-names>X.</given-names>
            <surname>Li</surname>
          </string-name>
          .
          <article-title>Summarize what you are interested in: An optimization framework for interactive personalized summarization</article-title>
          .
          <source>In In Proceedings of EMNLP</source>
          , pages
          <volume>1342</volume>
          {
          <fpage>1351</fpage>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>