<!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>Word Embedding for Social Book Suggestion</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Nawal Ould-Amer</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Philippe Mulhem</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Mathias Gery</string-name>
          <email>mathias.gery@univ-st-etienne.fr</email>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Karam Abdulahhad</string-name>
          <email>Karam.Abdulahhadg@imag.fr</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Nawal.Ould-Amer</institution>
          ,
          <addr-line>Philippe.Mulhem, Karam.Abdulahhad</addr-line>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Univ. Grenoble Alpes, LIG</institution>
          ,
          <addr-line>F-38000 Grenoble</addr-line>
          ,
          <country country="FR">France</country>
          <addr-line>CNRS, LIG, F-38000 Grenoble</addr-line>
          ,
          <country country="FR">France</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Universite de Lyon</institution>
          ,
          <addr-line>F-42023, Saint-Etienne</addr-line>
          ,
          <country country="FR">France</country>
          ,
          <institution>CNRS, UMR 5516, Laboratoire Hubert Curien</institution>
          ,
          <addr-line>F-42000, Saint-Etienne</addr-line>
          ,
          <institution>France Universite de Saint-Etienne</institution>
          ,
          <addr-line>Jean-Monnet, F-42000, Saint-Etienne</addr-line>
          ,
          <country country="FR">France</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper presents the joint work of the Universities of Grenoble and Saint-Etienne at CLEF 2016 Social Book Search Suggestion Track. The approaches studied are based on personalization, considering the user's pro le in the ranking process. The pro le is ltered using Word Embedding, by proposing several ways to handle the generated relationships between terms. We nd that tackling the problem of \non-topical" only queries is a great challenge in this case. The o cial results show that Word Embedding methods are able to improve results in the SBS case.</p>
      </abstract>
      <kwd-group>
        <kwd>social network</kwd>
        <kwd>word embedding</kwd>
        <kwd>probabilistic retrieval</kwd>
        <kwd>prole selection</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>This paper presents the joint participation of the MRIM group from the
Laboratoire d'Informatique de Grenoble and the Laboratoire Hubert Curien de
SaintEtienne at CLEF 2016 Social Book Search (SBS) Suggestion Track. The goal
of this track is to evaluate book retrieval approaches using the metadata of the
book and user-generated content [6]. Considering our previous participation to
this track in 2015 [9], our nding was that taking into account the whole user
pro le is not adequate. Hence, we believe that a selection of an adequate set of
terms related both to the user's pro le and to his query could enhance the
results. Such selection of terms is then matched against the documents, and fused
with the query/document matching values. The work described here relies on
Word Embedding (word2vec [7]) as a mean to help to select those terms.</p>
      <p>Recent works investigate the use of Word Embedding for enhancing IR e
ectiveness [1, 3, 8] or classi cation [5]. Word Embedding techniques seek to embed
representations of words. For example, two vectors !t0 and !t1 , corresponding to
the words t0 and t1, are close in a space of N dimensions if they have similar
contexts and vice-versa, i.e. if the contexts in turn have similar words [4]. In this
vector space of embedded words, the cosine similarity measure is classically used
to identify words occurring in similar contexts. In the work described here, we
used this approach to select words from the user's pro le that occur in the same
context as the query terms. These selected words represent a user sub-pro le
according to the context of his query.</p>
      <p>More precisely, we investigate here several ways to lter these terms and their
impact on the quality of the results. In a way to determine the impact of such
term ltering, we also study the use of non-personalized word embeddings for
the query terms, i.e., without using the user's pro le.</p>
      <p>The rest of the paper is organized as follows: Section 2 presents the proposed
approach and its four steps. The experiments and the o cial results are presented
in Section 3. We conclude this work in Section 4.
2
2.1</p>
    </sec>
    <sec id="sec-2">
      <title>Proposed approach</title>
      <sec id="sec-2-1">
        <title>Global Process</title>
        <p>The task described here aims to suggest books according to a user's query and
to his pro le. It consists of four steps:
1. Learning of the Word Embedding : this step describes the learning of a set of
word embeddings using word2vec [7] and the features applied in the training
process;
2. User Model: this step describes the way user pro le is modeled;
3. Pro le Query-Filtering: this step describes the building process for the user
sub-pro le based on his query;
4. Ranking Model: this step depicts the ranking model using a Pro le
Query</p>
        <p>Filtering.
2.2</p>
      </sec>
      <sec id="sec-2-2">
        <title>Notations</title>
        <p>We present now the notations used in this paper:
{ u 2 U : a user u from the whole set of users U ;
{ q = ft1; t2; :::; tmg: the original query of a user u.
{ qf = ft1; t2; :::; tog: the ltered query of a user u.
{ P (u) = ft1 : w1; t2 : w2; :::; tn : wng: the pro le of a user u, composed of
couples &lt;term : weight&gt;.
{ T erms(u) = ft1; t2; :::; tng: a set of user terms belonging to the user pro le</p>
        <p>P (u).
{ W ordEmbeddingw2v(q): a set of word embeddings (i.e. output of the section
2.3).
{ PF iltered(q; u): a sub-pro le of the user u according to the user query q.
{ PW eighted filtered(q; u): a weighted sub-pro le of the user u according to the
user query q.
2.3</p>
      </sec>
      <sec id="sec-2-3">
        <title>Learning of Word Embeddings</title>
        <p>Word Embedding is the generic name of a set of NLP-related learning
techniques to map words to low-dimensional (w.r.t. vocabulary size) vectors of real
numbers. Word Embedding [7], which falls in the same category as Latent
Semantic Analysis (LSA) [2], enables us to deal with a richer representation of
words, namely words are represented as vectors of more elementary components
or features. The similarity between vectors is supposed to be a good indicator
to the `closeness ' between the respective words [11]. In addition, the arithmetic
operations between vectors re ect a type of semantic-composition, e.g. bass +
guitar = bass guitar [11].</p>
        <p>In this section, we describe the process of learning word-vectors. To this end,
we train word2vec [7] on the Social Book Search corpus. Word2vec represents
each word w of the training set as a vector of features, where this vector is
supposed to capture the contexts in which w appears. Therefore, we chose the Social
Book Search corpus to be the training set, where the training set is expected to
be consistent with the data on which we want to test.</p>
        <p>To construct the training set from the Social Book Search corpus, we
simply concatenate the contents of all documents in one document, without any
particular pre-processing such as stemming or stop-words removal, except some
text normalization and cleaning operations such as lower-case normalization,
removing HTML tags, etc. The obtained document is the input training set of
word2vec. The size of the training set is 12:5GB, where it contains 2:3
billions words, and the vocabulary size is about 600K. The training parameters of
word2vec are set as follows:
{ we used the continuous bag of words model instead of the skip-gram (word2vec
options: cbow=1);
{ the output vectors size or the number of features of resulting word-vectors
is set to 500 (word2vec options: size=500);
{ the width of the word-context window is set to 8 (word2vec options:
window=8);
{ the number of negative samples is set to 25 (word2vec options: negative=25).</p>
        <p>For example, based on the output of word2vec, the 10 most similar (using
cosine similarity) words of \novel " in the Social Book Search corpus are: story,
novella, thriller, tale, storyline, masterpiece, plot, debut, engrossing, and genre.
2.4</p>
      </sec>
      <sec id="sec-2-4">
        <title>User Modeling</title>
        <p>We model each user u by a set of terms that describe his interests. These terms
are the tags that a user u used to describe or annotate the documents (books
present in his catalogue). Each user u is represented by his pro le P (u) as a
vector over the set of tags as follow:</p>
        <p>
          P (u) = ft1 : w1; t2 : w2; :::; tn : wng
(
          <xref ref-type="bibr" rid="ref1">1</xref>
          )
Where ti is a term and wi a weight of this term, corresponding to his importance
in the user pro le. This weight wi is the tf of ti: the number of times the user u
used this tag to annotate books.
2.5
2.5.1
        </p>
      </sec>
      <sec id="sec-2-5">
        <title>Pro le Query-Filtering</title>
      </sec>
      <sec id="sec-2-6">
        <title>Term Filtering</title>
        <p>As stated before, Word Embedding can potentially be helpful in the selection
of terms related to the query. Despite the e ectiveness of Word Embedding to
select embedded terms, it could happen that they decrease the e ectiveness of
the system. Usually, embedded terms are used as extensions of a term, as query
expansion. In fact, if an extended term is a noisy term (because of its ambiguity
for instance, or because it is not a topical term of the query), then the set of
its resulting word embeddings will increase the noise in the extended query. For
example, in the queries (taken from the topics of Social Book Search 2016) \Help!
i Need more books", \Can you recommend a good thesaurus?", \New releases
from authors that literally make you swoon..." or \Favorite Christmas Books
to read to young children", the majority of words are not useful for expansion,
like \new, good, recommend, make, you ...". Therefore, we need to lter the
words of the queries before the expansion process. We chose to remove from the
words to be expanded all the words that are adjectives. To do that, we use an
English stop-adjective list in addition to the standard English stop-word. Then,
this process generates, from initial query q, a ltered query qf = ft1; t2; :::; tog
that is expected to contain more relevant topical elements as output.
2.5.2</p>
        <p>Word Embedding Selection</p>
        <p>From each of the terms in the ltered query qf obtained by the previous step
2.5.1, we then select their set of word embeddings. For each term as an input, we
obtain the top-k most related terms as an output. The metric used is the cosine
similarity between the query term and all words in the training corpus. From
these top-k terms, we do not want to over-emphasize variations of the query
term. So, we lter out from the top-k terms the ones that have the same stem
as the initial query term. Such stems are generated using the well know Porter
stemmer for English.</p>
        <p>The expanded query generated as output of this step is:</p>
        <p>
          W ordEmbeddingw2v(qf ) =
(
          <xref ref-type="bibr" rid="ref2">2</xref>
          )
8 emt11; emt12; :::; emt1k; 9
&gt; &gt;
&gt;&lt; emt21; emt22; :::; emt2k; =&gt;
&gt; ::: &gt;&gt;
&gt;: emto1; emto2; :::; emtok ;
        </p>
        <p>Where W ordEmbeddingw2v(qf ) denotes the function that returns a set of
word embedding for a given ltered query qf , and em tij denotes the jth element
of the top-k word embeddings of ti.
2.5.3</p>
      </sec>
      <sec id="sec-2-7">
        <title>Generation of user's sub-pro le</title>
        <p>The goal of our proposal is to construct a sub-pro le using a set of word
embeddings based on a user query. Our approach here is to apply a naive method
based on the Intersection between a) the query word embeddings set and b)
the user pro le, as follows:</p>
        <p>
          PF iltered(qf ; u) = W ordEmbeddingw2v(qf ) \ T erms(u)
(
          <xref ref-type="bibr" rid="ref3">3</xref>
          )
        </p>
        <p>We propose two variations of such a user query sub-pro le:
{ Non-Weighted Sub-Pro le (PF iltered): this user sub-pro le is represented
by only the terms without weights, then all terms in the query have a same
weight (i.e. corresponds to PF iltered(qf ; u) de ned in Eq. 3).
{ Weighted Sub-Pro le (PW eighted filtered): for this user sub-pro le, the
weight for each term in the pro le is the cosine between of the embeddings
of the ltered term and its respective query term.
2.6</p>
      </sec>
      <sec id="sec-2-8">
        <title>Ranking</title>
        <p>In this part, we present the ranking used to suggest books to the user according to
his query and to his pro le. We take into account two elements: if the document
is related to the user query, and if the document is related to the user pro le, as
follows:</p>
        <p>Score(qf ; u; d) =</p>
        <p>
          Score(qf ; d) + (
          <xref ref-type="bibr" rid="ref1">1</xref>
          ) Score(u; d)
(
          <xref ref-type="bibr" rid="ref4">4</xref>
          )
Where Score(qf ; d) is the matching score between the ltered query qf and the
document d, Score(u; d) is the matching score between the user u and the
document d, and 2 [0; 1] determines the relative importance of each part of formula.
        </p>
        <sec id="sec-2-8-1">
          <title>The Score(qf ; d) is a fusion of four parts:</title>
          <p>Score(qf ; d) =</p>
          <p>ScoreBM25(qf ; d) +</p>
          <p>
            ScoreLM (qf ; d)
(
            <xref ref-type="bibr" rid="ref5">5</xref>
            )
+
+
          </p>
          <p>ScoreBM25(W ordEmbeddingw2v(qf ); d)</p>
          <p>ScoreLM (W ordEmbeddingw2v(qf ); d)</p>
          <p>Where ScoreBM25(qf ; d) (resp. ScoreLM (qf ; d)) denotes a matching using the
classical BM25 model (resp. language model), and , , and are parameters
that determine the importance of each part of the document overall score ( +
+ + = 1).</p>
          <p>
            The function Score(u; d) in equation (
            <xref ref-type="bibr" rid="ref4">4</xref>
            ) is computed as a classical matching
function (BM25 or Language Model) between the document d and the ltered
user's pro le (weighted: PW eighted filtered, or not weighted: PF iltered) of u.
          </p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Experimental Results</title>
      <p>3.1</p>
      <sec id="sec-3-1">
        <title>Parameters and post-processing</title>
        <p>For all the runs described below, for the BM25 runs the parameters are the
defaults of Terrier [10], except for one parameter b = 0:5, according to previous
experiments on SBS 2015. For the Language Models with Dirichlet smoothing,
we use the default Terrier parameter = 2500.</p>
        <p>For the re-ranking post process, we used the same protocol used in [9]. The
documents that belong to the user's catalogue are removed for the result. This
process is applied for each run.
3.2</p>
      </sec>
      <sec id="sec-3-2">
        <title>Submitted runs</title>
        <sec id="sec-3-2-1">
          <title>We submitted the 6 following runs:</title>
          <p>
            1. RUN1: This run is the non-personalized approach ( = 1 in the Eq. 4). The
Score(qf ; d) is computed using Eq. 5 with the following parameters: = 0:6,
= 0:2, = 0:2, = 0:0.
2. RUN2: This run is also a non-personalized approach ( = 1 in the Eq. 4),
very similar to the run RUN1. The Score(qf ; d) is computed using Eq. 5
with the following parameters: = 0:6, = 0:2, = 0, = 0:2.
3. RUN3: This run is a personalized approach where the user u is
represented by his ltered pro le PF iltered in the Score(u; d) function (Eq.4). The
Score(qf ; d) represents the score of d according to the RUN1 above. The
score Score(u; d) of equation (
            <xref ref-type="bibr" rid="ref4">4</xref>
            ) is equal to ScoreBM25(PF iltered(qf ; u); d).
          </p>
          <p>
            The parameter is equal to 0.7.
4. RUN4: This run is a personalized approach where the user is represented by
his ltered pro le PF iltered in the Score(u; d) function (Eq.4). The Score(qf ; d)
represents the score of d according to the RUN1 above. The score Score(u; d)
of equation (
            <xref ref-type="bibr" rid="ref4">4</xref>
            ) is equal to ScoreLM (PF iltered(qf ; u); d). The parameter is
equal to 0.7.
5. RUN5: This run is a personalized approach where the user is represented by
his weighted pro le PW eighted filtered in the Score(u; d) function (Eq.4). The
Score(qf ; d) represents the score of d according to the RUN1 above. The score
Score(u; d) of equation (
            <xref ref-type="bibr" rid="ref4">4</xref>
            ) is equal to ScoreBM25(PW eighted F iltered(qf ; u); d).
          </p>
          <p>
            The parameter is equal to 0.7.
6. RUN6: This run is a personalized approach where the user is represented by
his weighted pro le PW eighted filtered in the Score(u; d) function (Eq.4). The
Score(qf ; d) represents the score of d according to the RUN1 above. The score
Score(u; d) of equation (
            <xref ref-type="bibr" rid="ref4">4</xref>
            ) is equal to ScoreLM (PW eighted F iltered(qf ; u); d).
The parameter is equal to 0.7.
          </p>
        </sec>
        <sec id="sec-3-2-2">
          <title>All these runs parameters are described in table 1.</title>
          <p>According to table 2, we see that all of our results are quite close to each other.
Even the weighted pro les compared to unweighted ones does not change results:
runs RU N 6 and RU N 3 on one side and runs RU N 4 and RU N 5 lead to exactly
the same result lists, and therefore the same evaluation results. This may be
explained by the fact that the top-10 terms are usually very close (according to
the cosine similarity) to the query terms, leading to weights close to 1:0. This
has to be studied more carefully in the future. We remark that our two best
runs (RU N 2 and RU N 6) include word embeddings. Both of them use Word
Embedding applied on Language Models. It seems so that the integration of
word embeddings behaves a bit better on language models than on BM25. Our
best run, RU N 2, is not personalized. This shows that using word embeddings
in the context of personalization must be further studied.
We depict here a strange behavior that we faced after the release of the o cial
relevance judgments: the reranking (described in Section 3.1) that removes the
documents that belong to the user catalogue does lower the evaluations results.
Table 3 presents the N DCG@10 values with and without reranking, with the
relative improvement. This is explained by the fact that we chose to remove all
the ISBN documents that correspond to the documents from the user catalogue,
and not only the documents that correspond to the LT id of the books. This
approach increased the quality of the results in 2015, but is clearly not adequate
for this year. This may come from a di erent removal, in the relevance judgments,
of the documents in the user's catalogue.
We presented in this paper a joint work between the universities of Grenoble
and Saint-Etienne. Our focus was to study the integration of word embeddings
for the Social Book Suggestion task. We nd that the nature of the queries
pose a great challenge to an e ective use of word embeddings in this context.
Weighting the expansion terms does not lead to better results. Our future works
may help to understand this behavior. One last point is related to the removal
of the documents that belong to the user's catalogue: removing all the ISBN ids
and not only the LT ids from the results, assuming that is a user already bought
one edition of a book he does not want another edition, is clearly not the right
choice, as such removal decreased substantially our o cial results.
7. Mikolov, T., Chen, K., Corrado, G., Dean, J.: E cient estimation of word
representations in vector space. CoRR abs/1301.3781 (2013)
8. Nalisnick, E., Mitra, B., Craswell, N., Caruana, R.: Improving document ranking
with dual word embeddings. In: Conference Companion on World Wide Web. pp.
83{84. WWW'16 Companion, Montreal, Quebec, Canada (2016)
9. Ould-Amer, N., Mulhem, P., Gery, M.: LIG at CLEF 2015 SBS Lab. In: Conference
and Labs of the Evaluation Forum. CLEF'15, Toulouse, France (2015)
10. Ounis, I., Amati, G., Plachouras, V., He, B., Macdonald, C., Lioma, C.: Terrier: A
High Performance and Scalable Information Retrieval Platform. In: Workshop on
Open Source Information Retrieval. OSIR'06, Seattle, Washington, USA (2006)
11. Widdows, D.: Geometry and Meaning. Center for the Study of Language and
Information/SRI (2004)</p>
        </sec>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Almasri</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Berrut</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chevallet</surname>
            ,
            <given-names>J.:</given-names>
          </string-name>
          <article-title>A comparison of deep learning based query expansion with pseudo-relevance feedback and mutual information</article-title>
          .
          <source>In: European Conference on IR Research</source>
          . pp.
          <volume>709</volume>
          {
          <fpage>715</fpage>
          . ECIR'
          <volume>16</volume>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Deerwester</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dumais</surname>
            ,
            <given-names>S.T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Furnas</surname>
            ,
            <given-names>G.W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Landauer</surname>
            ,
            <given-names>T.K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Harshman</surname>
          </string-name>
          , R.:
          <article-title>Indexing by latent semantic analysis</article-title>
          .
          <source>Journal of the American Society for Information Science</source>
          <volume>41</volume>
          (
          <issue>6</issue>
          ),
          <volume>391</volume>
          {
          <fpage>407</fpage>
          (
          <year>1990</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Ganguly</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Roy</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mitra</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jones</surname>
            ,
            <given-names>G.J.:</given-names>
          </string-name>
          <article-title>Word embedding based generalized language model for information retrieval</article-title>
          .
          <source>In: Conference on Research and Development in Information Retrieval</source>
          . pp.
          <volume>795</volume>
          {
          <fpage>798</fpage>
          . SIGIR'
          <volume>15</volume>
          , New York, USA (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Goldberg</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Levy</surname>
            ,
            <given-names>O.:</given-names>
          </string-name>
          <article-title>word2vec explained: deriving mikolov et al.'s negativesampling word-embedding method</article-title>
          .
          <source>CoRR abs/1402</source>
          .3722 (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Kim</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Convolutional neural networks for sentence classi cation</article-title>
          .
          <source>CoRR abs/1408</source>
          .5882 (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Koolen</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bogers</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          , Gade, M.,
          <string-name>
            <surname>Hall</surname>
            ,
            <given-names>M.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Huurdeman</surname>
            ,
            <given-names>H.C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kamps</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Skov</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Toms</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Walsh</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Overview of the CLEF 2015 Social Book Search lab</article-title>
          . In: Conference and
          <article-title>Labs of the Evaluation Forum</article-title>
          . pp.
          <volume>545</volume>
          {
          <fpage>564</fpage>
          . CLEF'
          <volume>15</volume>
          , Toulouse, France (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>