<!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>Apache Lucene as Content-Based-Filtering Recommender System: 3 Lessons Learned</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Stefan Langer</string-name>
          <email>langer@ovgu.de</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Joeran Beel</string-name>
          <email>beel@nii.ac.jp</email>
          <email>joeran.beel@adaptcentre.ie</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>National Institute of Informatics, Digital Content and Media Sciences Research Division</institution>
          ,
          <addr-line>Tokyo</addr-line>
          ,
          <country country="JP">Japan</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Otto-von-Guericke University, Department of Computer Science</institution>
          ,
          <addr-line>Magdeburg</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Trinity College Dublin, Department of Computer Science, ADAPT Centre</institution>
          ,
          <country country="IE">Ireland</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2017</year>
      </pub-date>
      <fpage>85</fpage>
      <lpage>92</lpage>
      <abstract>
        <p>For the past few years, we used Apache Lucene as recommendation framework in our scholarly-literature recommender system of the reference-management software Docear. In this paper, we share three lessons learned from our work with Lucene. First, recommendations with relevance scores below 0.025 tend to have significantly lower click-through rates than recommendations with relevance scores above 0.025. Second, by picking ten recommendations randomly from Lucene's top50 search results, click-through rate decreased by 15%, compared to recommending the top10 results. Third, the number of returned search results tend to predict how high click-through rates will be: when Lucene returns less than 1,000 search results, click-through rates tend to be around half as high as if 1,000+ results are returned.</p>
      </abstract>
      <kwd-group>
        <kwd>recommender systems</kwd>
        <kwd>apache lucene</kwd>
        <kwd>content-based filtering</kwd>
        <kwd>lessons learned</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Mendeley, or Citavi. Docear has approximately 50,000 registered users and uses
mindmaps to manage PDFs and references. Since 2012, Docear has been offering a
recommender system for 1.8 million publicly available research papers on the web.
Recommendations are displayed as a list of ten research papers, showing the title of the
recommended papers (Fig. 1). Clicking a recommendation opens the paper’s full-text
(PDF) in the user’s web browser. Between 2012 and 2015, the recommender system
delivered around one million recommendations to more than 7,000 researchers. For
more details on the recommender system please refer to
        <xref ref-type="bibr" rid="ref8">Beel et al. (2014)</xref>
        .
In this paper, we share some experiences we made with Lucene, focusing on three
aspects. First, we analyze the meaning of Lucene’s relevance scores. Second, we analyze
how effective recommendations are based on Lucene’s suggested rank. Finally, we
analyze the relationship between the amount of recommendation candidates that Lucene
returns and the recommendation effectiveness. Although we did our research in the
context of research-paper recommendations, results might also be interesting for other
recommender-systems domains that use Lucene, for instance, in the domains of news
recommender systems, website recommender systems, or tweet recommender systems
        <xref ref-type="bibr" rid="ref10 ref13 ref14 ref17 ref19 ref21 ref25">(Chen, Ororbia, Alexander, &amp; Giles, 2015; Duma, Liakata, Clare, Ravenscroft, &amp;
Klein, 2016; Garcia Esparza et al., 2010; Jonnalagedda et al., 2016; Mitzig et al., 2016;
Phelan et al., 2009; Shelton et al., 2010)</xref>
        .
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>Methodology</title>
      <p>
        All presented results are based on data that we collected between May 2013, and
October 2014. During this time, Docear’s recommender system delivered 418,308
recommendations to 4,674 unique users. We use click-through rate as measure for the
effectiveness of delivered recommendations. Click-through rate (CTR) describes the ratio of
clicked and delivered recommendations. For more details on click-through rate and its
suitability as evaluation metric please refer to
        <xref ref-type="bibr" rid="ref6">Beel &amp; Langer (2015)</xref>
        . All reported
differences are statistically significant (p &lt; 0.05) based on a two-tailed t-test.
3
3.1
      </p>
    </sec>
    <sec id="sec-3">
      <title>Results &amp; Discussion</title>
      <p>Lucene’s Relevance Scores
Lucene provides relevance scores for each recommendation. This information could be
used, theoretically, to recommend only documents with a relevance score above a
certain threshold. However, on the Web it is often reported that these scores cannot be
used to compare relevancies of recommendations between different queries, or to
conclude from the relevance score how relevant the search result or recommendation is
overall.1 Our data shows a slightly different picture.</p>
      <p>In our data, the highest relevance score for a recommendation was 19.01, median
was 0.16 and mean was 0.22. Fig. 2 shows that CTR was lowest (3.36%) for
recommendations with a relevance score below 0.01, and highest (6.16%) for relevance scores
of 1 and above. For recommendations with relevance scores between 0.1 and 0.8, CTR
remained mostly stable around 5%. Overall, there is a notable trend: CTR increases, the
higher Lucene relevance scores become.</p>
      <p>Our observation contradicts the common claims that Lucene’s relevance score
cannot be used to estimate a search result’s absolute relevance. If, for instance, an operator
of a recommender system decided that a click-through rate of at least 4% was desirable,
then recommendations with a relevance score below 0.25 should probably be discarded.
1 https://wiki.apache.org/lucene-java/ScoresAsPercentages
8%
7%
6%
5%
4% TR
3% C
2%
1%
0%
Similarly, our result might lead to the conclusion to only recommend documents above
a certain relevance threshold, e.g. 1. However, recommending only documents with a
relevance score of 1 and above is probably not sensible as only a small fraction of
recommendations had a relevance score of 1 and above (0.60%). Similarly, it might seem
sensible to not recommend documents with relevance scores below 0.025 as these
documents had very low CTRs. However, only a small fraction of recommendations
(4.27%) had relevance scores below 0.025, so this decision would barely affect the
overall click-through rate.</p>
      <p>25%
20%
15%
10%
5%
n
o
it
u
b
iitrs
D
To increase the diversity of recommendations, Docear’s recommender system
randomly chose 10 recommendations out of the top50 results returned by Lucene.
However, this leads to lower click-through rates. Recommendations originally being ranked
1 by Lucene received CTRs of 6.83% on average and recommendations on rank 2
received CTRs of 6.08% on average (Fig. 3). For ranks 3 to 10, CTR remains stable
around 5.3% and then CTR constantly decreases the lower the original rank.
ed s
lisyapd itanndo
fro em
eubNm rceom
25%
20%
15%
10%
5%
0%</p>
      <p>1
# Dspld. Recs 2.10%
CTR 6.83%</p>
      <p>2
2.13%
6.08%</p>
      <p>3
2.07%
5.29%</p>
      <p>4
2.14%
5.41%</p>
      <p>5 [6;10] [11;20] [21;30] [31;40] [41;50]
2.10% 10.61% 20.40% 19.64% 19.46% 19.35%
5.25% 5.33% 4.72% 4.69% 4.46% 4.17%</p>
      <p>
        Original Lucene Rank
ed s
ilsyapd itandno
fro em
eubNm rceom
Overall, recommendations being in Lucene’s top10 results, achieved CTRs of 5.55%
on average, while the top50 achieved CTRs of 4.73% on average. This means, selecting
randomly 10 recommendations from the top50 candidates decreases recommendation
effectiveness by around 15%, compared to showing recommendations from the top10
only. The recommender system shuffled recommendations before they were displayed.
This means, position bias cannot have influenced the results
        <xref ref-type="bibr" rid="ref11 ref16 ref20 ref26">(Craswell, Zoeter, Taylor,
&amp; Ramsey, 2008; Hofmann, Schuth, Bellogin, &amp; Rijke, 2014; Pan et al., 2007; Wang,
Bendersky, Metzler, &amp; Najork, 2016)</xref>
        .
By default, Lucene returns 1,000 recommendations, i.e. search results. In our data,
Lucene returned the maximum possible amount of 1,000 results for 91.25% of all
termbased recommendations (Fig. 4). In contrast, only for 0.05% of citation-based searches
1,000 results were returned. Most citation-based searches returned between one and
nine results (34.84%) or between 10 and 24 results (29.94%). Click-through rates seem
to be rather high when only few results were returned. For term-based searches, results
are the opposite: the more recommendation candidates are available, the higher the
CTR tends to be. Consequently, for term-based recommendations, the number of results
might be a good approximation of recommendation effectiveness. If less than 1,000
results are returned it might make sense to no recommend the documents or try an
alternative recommendation approach.
      </p>
      <p># Dspld. Recs (Terms)
# Dspld. Recs (Cit.)
CTR (Terms)
CTR (Citations)
vance score, discarding them will probably not notably affect the overall
recommendation effectiveness. Second, recommending ten recommendations out of the top50
results might be sensible. Although this process decreases the overall recommendation
effectiveness by 15%, the recommendation diversity or number of total
recommendations is increased. Third, the number of recommendation candidates returned by Lucene
is suitable to approximate the recommendation effectiveness. If Lucene returns less
than 1,000 results for term-based recommendations, the click-through rate probably
will be around half as high as if 1,000 candidates are returned. In the case of less than
1,000 results, it might make sense to not display the recommendations or generate
recommendations again with another recommendation approach.</p>
      <p>
        For the future, we suggest to repeat our analyses in different scenarios, for instance,
with news recommenders or other literature recommender systems, to see if Lucene
behaves in the same way as in the scenario of Docear. Currently, we are developing a
recommender system as-a-service that would allow us to conduct such analyses with
different partners
        <xref ref-type="bibr" rid="ref2 ref3 ref4">(Beel &amp; Gipp, 2017; Beel, Gipp, Langer, Genzmehr, et al., 2011)</xref>
        .
5
      </p>
    </sec>
    <sec id="sec-4">
      <title>Acknowledgements</title>
      <p>This work was supported by a fellowship within the FITweltweit programme of the
German Academic Exchange Service (DAAD). In addition, this publication has
emanated from research conducted with the financial support of Science Foundation Ireland
(SFI) under Grant Number 13/RC/2106.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          <string-name>
            <surname>Bancu</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dagadita</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dascalu</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dobre</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Trausan-Matu</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Florea</surname>
            ,
            <given-names>A. M.</given-names>
          </string-name>
          (
          <year>2012</year>
          ).
          <article-title>ARSYS-Article Recommender System</article-title>
          .
          <source>Proceedings of the 14th International Symposium on Symbolic and Numeric Algorithms for Scientific Computing</source>
          (pp.
          <fpage>349</fpage>
          -
          <lpage>355</lpage>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <string-name>
            <surname>Beel</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Gipp</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          (
          <year>2017</year>
          ).
          <article-title>Mr. DLib: Recommendations-as-a-Service (RaaS) for Academia (Pre-print)</article-title>
          .
          <source>Proceedings of the ACM/IEEE-CS Joint Conference on Digital Libraries (JCDL).</source>
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          <string-name>
            <surname>Beel</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gipp</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Langer</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Genzmehr</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          (
          <year>2011</year>
          ).
          <article-title>Docear: An Academic Literature Suite for Searching, Organizing and Creating Academic Literature</article-title>
          .
          <source>Proceedings of the 11th Annual International ACM/IEEE Joint Conference on Digital Libraries (JCDL)</source>
          ,
          <source>JCDL '11</source>
          (pp.
          <fpage>465</fpage>
          -
          <lpage>466</lpage>
          ). ACM. doi:
          <volume>10</volume>
          .1145/1998076.1998188
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          <string-name>
            <surname>Beel</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gipp</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Langer</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Genzmehr</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wilde</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nürnberger</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Pitman</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          (
          <year>2011</year>
          ).
          <article-title>Introducing Mr. DLib, a Machine-readable Digital Library</article-title>
          .
          <source>Proceedings of the 11th ACM/IEEE Joint Conference on Digital Libraries (JCDL'11)</source>
          (pp.
          <fpage>463</fpage>
          -
          <lpage>464</lpage>
          ). ACM. doi:
          <volume>10</volume>
          .1145/1998076.1998187
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          <string-name>
            <surname>Beel</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gipp</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Mueller</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          (
          <year>2009</year>
          ). SciPlore MindMapping'
          <article-title>- A Tool for Creating Mind Maps Combined with PDF</article-title>
          and
          <string-name>
            <given-names>Reference</given-names>
            <surname>Management. D-Lib</surname>
          </string-name>
          <string-name>
            <surname>Magazine</surname>
          </string-name>
          ,
          <volume>15</volume>
          (
          <issue>11</issue>
          ). doi:
          <volume>10</volume>
          .1045/november2009-inbrief
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          <string-name>
            <surname>Beel</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Langer</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          (
          <year>2015</year>
          ).
          <article-title>A Comparison of Offline Evaluations, Online Evaluations, and User Studies in the Context of Research-Paper Recommender Systems</article-title>
          . In S. Kapidakis,
          <string-name>
            <given-names>C.</given-names>
            <surname>Mazurek</surname>
          </string-name>
          , &amp; M. Werla (Eds.),
          <source>Proceedings of the 19th International Conference on Theory and Practice of Digital Libraries (TPDL), Lecture Notes in Computer Science</source>
          (Vol.
          <volume>9316</volume>
          , pp.
          <fpage>153</fpage>
          -
          <lpage>168</lpage>
          ). doi:
          <volume>10</volume>
          .1007/978-3-
          <fpage>319</fpage>
          -24592-8_
          <fpage>12</fpage>
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          <string-name>
            <surname>Beel</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Langer</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Genzmehr</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Nürnberger</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          (
          <year>2013</year>
          ).
          <article-title>Introducing Docear's Research Paper Recommender System</article-title>
          .
          <source>Proceedings of the 13th ACM/IEEECS Joint Conference on Digital Libraries (JCDL'13)</source>
          (pp.
          <fpage>459</fpage>
          -
          <lpage>460</lpage>
          ). ACM. doi:
          <volume>10</volume>
          .1145/2467696.2467786
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          <string-name>
            <surname>Beel</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Langer</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gipp</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Nürnberger</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          (
          <year>2014</year>
          ).
          <article-title>The Architecture and Datasets of Docear's Research Paper Recommender System</article-title>
          .
          <string-name>
            <surname>D-Lib</surname>
            <given-names>Magazine</given-names>
          </string-name>
          ,
          <volume>20</volume>
          (
          <issue>11</issue>
          /12). doi:
          <volume>10</volume>
          .1045/november14-beel
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          <string-name>
            <surname>Caragea</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wu</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ciobanu</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Williams</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          , Fernández-Ram rez, J.,
          <string-name>
            <surname>Chen</surname>
          </string-name>
          , H.-H.,
          <string-name>
            <surname>Wu</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          , et al. (
          <year>2014</year>
          ).
          <article-title>CiteseerX: A scholarly big dataset</article-title>
          .
          <source>European Conference on Information Retrieval</source>
          (pp.
          <fpage>311</fpage>
          -
          <lpage>322</lpage>
          ). Springer.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>H.-H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ororbia</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Alexander</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Giles</surname>
            ,
            <given-names>C. L.</given-names>
          </string-name>
          (
          <year>2015</year>
          ).
          <article-title>ExpertSeer: a Keyphrase Based Expert Recommender for Digital Libraries</article-title>
          .
          <source>arXiv preprint arXiv:1511</source>
          .
          <year>02058</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          <string-name>
            <surname>Craswell</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zoeter</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Taylor</surname>
          </string-name>
          , M., &amp;
          <string-name>
            <surname>Ramsey</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          (
          <year>2008</year>
          ).
          <article-title>An experimental comparison of click position-bias models</article-title>
          .
          <source>Proceedings of the 2008 International Conference on Web Search and Data Mining</source>
          (pp.
          <fpage>87</fpage>
          -
          <lpage>94</lpage>
          ). ACM.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          <string-name>
            <surname>Demner-Fushman</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Abhyankar</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jimeno-Yepes</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Loane</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rance</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lang</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ide</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          , et al. (
          <year>2011</year>
          ).
          <article-title>A Knowledge-Based Approach to Medical Records Retrieval</article-title>
          .
          <source>Proceedings of the 20th Text REtrieval Conference (TREC).</source>
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          <string-name>
            <surname>Duma</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liakata</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Clare</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ravenscroft</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Klein</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          (
          <year>2016</year>
          ).
          <article-title>Rhetorical Classification of Anchor Text for Citation Recommendation</article-title>
          .
          <string-name>
            <surname>D-Lib</surname>
            <given-names>Magazine</given-names>
          </string-name>
          ,
          <volume>22</volume>
          (
          <issue>9</issue>
          /10).
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          <string-name>
            <given-names>Garcia</given-names>
            <surname>Esparza</surname>
          </string-name>
          ,
          <string-name>
            <surname>S.</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O</given-names>
            <surname>'Mahony</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. P.</given-names>
            , &amp;
            <surname>Smyth</surname>
          </string-name>
          ,
          <string-name>
            <surname>B.</surname>
          </string-name>
          (
          <year>2010</year>
          ).
          <article-title>On the real-time web as a source of recommendation knowledge</article-title>
          .
          <source>Proceedings of the fourth ACM conference on Recommender systems</source>
          (pp.
          <fpage>305</fpage>
          -
          <lpage>308</lpage>
          ). ACM.
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          <string-name>
            <surname>Gipp</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Meuschke</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Lipinski</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          (
          <year>2015</year>
          ).
          <article-title>CITREC: An Evaluation Framework for Citation-Based Similarity Measures based on TREC Genomics and PubMed Central</article-title>
          .
          <source>Proceedings of the iConference 2015</source>
          . Newport Beach, California. Retrieved from https://www.ideals.illinois.edu/bitstream/handle/2142/73680/98_ready.pdf
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          <string-name>
            <surname>Hofmann</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schuth</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bellogin</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Rijke</surname>
          </string-name>
          , M. de. (
          <year>2014</year>
          ).
          <source>Effects of Position Bias on Click-Based Recommender Evaluation. Advances in Information Retrieval</source>
          (pp.
          <fpage>624</fpage>
          -
          <lpage>630</lpage>
          ). Springer.
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          <string-name>
            <surname>Jonnalagedda</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gauch</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Labille</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Alfarhood</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          (
          <year>2016</year>
          ).
          <article-title>Incorporating popularity in a personalized news recommender system</article-title>
          .
          <source>PeerJ Computer Science</source>
          ,
          <volume>2</volume>
          ,
          <fpage>e63</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          <string-name>
            <surname>Livne</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gokuladas</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Teevan</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dumais</surname>
            ,
            <given-names>S. T.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Adar</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          (
          <year>2014</year>
          ).
          <article-title>CiteSight: supporting contextual citation recommendation using differential search</article-title>
          .
          <source>Proceedings of the 37th international ACM SIGIR conference on Research &amp; development in information retrieval</source>
          ,
          <fpage>807</fpage>
          -
          <lpage>816</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          <string-name>
            <surname>Mitzig</surname>
            ,
            <given-names>N. L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mitzig</surname>
            ,
            <given-names>M. S.</given-names>
          </string-name>
          , Mart nez,
          <string-name>
            <given-names>F. A.</given-names>
            ,
            <surname>Piriz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. A.</given-names>
            ,
            <surname>Ferracutti</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V. M.</given-names>
            ,
            <surname>González</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. P.</given-names>
            , &amp;
            <surname>Maguitman</surname>
          </string-name>
          ,
          <string-name>
            <surname>A. G.</surname>
          </string-name>
          (
          <year>2016</year>
          ).
          <article-title>SciELO suggester: An intelligent support tool for cataloging library resources</article-title>
          .
          <source>Library &amp; Information Science Research</source>
          ,
          <volume>38</volume>
          (
          <issue>1</issue>
          ),
          <fpage>39</fpage>
          -
          <lpage>51</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          <string-name>
            <surname>Pan</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hembrooke</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Joachims</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lorigo</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gay</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Granka</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          (
          <year>2007</year>
          ).
          <article-title>In google we trust: Users' decisions on rank, position, and relevance</article-title>
          .
          <source>Journal of Computer-Mediated Communication</source>
          ,
          <volume>12</volume>
          (
          <issue>3</issue>
          ),
          <fpage>801</fpage>
          -
          <lpage>823</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          <string-name>
            <surname>Phelan</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>McCarthy</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Smyth</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          (
          <year>2009</year>
          ).
          <article-title>Using twitter to recommend real-time topical news</article-title>
          .
          <source>Proceedings of the third ACM conference on Recommender systems</source>
          (pp.
          <fpage>385</fpage>
          -
          <lpage>388</lpage>
          ). ACM.
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          <string-name>
            <surname>Pohl</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          (
          <year>2007</year>
          ).
          <article-title>Using Access Data for Paper Recommendations on ArXiv. org</article-title>
          .
          <source>Master Thesis</source>
          . Technical University of Darmstadt.
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          <string-name>
            <surname>Pursel</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liang</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wu</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Williams</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Brautigam</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Saul</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , et al. (
          <year>2016</year>
          ).
          <article-title>BBookX: Design of an Automated Web-based Recommender System for the Creation of Open Learning Content</article-title>
          .
          <source>Proceedings of the 25th International Conference Companion on World Wide Web</source>
          (pp.
          <fpage>929</fpage>
          -
          <lpage>933</lpage>
          ).
          <source>International World Wide Web Conferences Steering Committee.</source>
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          <string-name>
            <surname>Schwarzer</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schubotz</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Meuschke</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Breitinger</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Markl</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Gipp</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          (
          <year>2016</year>
          ).
          <article-title>Evaluating Link-based Recommendations for Wikipedia</article-title>
          .
          <source>Proceedings of the 16th ACM/IEEE-CS Joint Conference on Digital Libraries (JCDL)</source>
          ,
          <source>JCDL '16</source>
          (pp.
          <fpage>191</fpage>
          -
          <lpage>200</lpage>
          ). Newark, New Jersey, USA: ACM. doi:
          <volume>10</volume>
          .1145/2910896.2910908
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          <string-name>
            <surname>Shelton</surname>
            ,
            <given-names>B. E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Duffin</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Ball</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          (
          <year>2010</year>
          ).
          <article-title>Linking open course wares and open education resources: creating an effective search and recommendation system</article-title>
          .
          <source>Procedia Computer Science</source>
          ,
          <volume>1</volume>
          (
          <issue>2</issue>
          ),
          <fpage>2865</fpage>
          -
          <lpage>2870</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bendersky</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Metzler</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Najork</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          (
          <year>2016</year>
          ).
          <article-title>Learning to rank with selection bias in personal search</article-title>
          .
          <source>Proceedings of the 39th International ACM SIGIR conference on Research and Development in Information Retrieval</source>
          (pp.
          <fpage>115</fpage>
          -
          <lpage>124</lpage>
          ). ACM.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>