<!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>Data Balancing for Technologically Assisted Reviews: Undersampling or Reweighting</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Zhe Yu</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Tim Menzies</string-name>
          <email>tim.menzies@gmail.com</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>NC State University</institution>
          ,
          <addr-line>Raleigh NC 27695</addr-line>
          ,
          <country country="US">USA</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper provides approaches for automated support of citation screening in systematic reviews. Continuous active learning is chosen as our baseline approach, above which, two data balancing techniques are applied to handle the imbalance problem. These two techniques, aggressive undersampling and reweighting are tested and compared on 20 data sets for Diagnostic Test Accuracy (DTA) reviews. Results are evaluated by last rel and suggest that reweighting outperforms undersampling as it not only balances the training data, but also emphasizes the \content relevant" examples over \abstract relevant" ones and thus helps to retrieve \content relevant" papers earlier.</p>
      </abstract>
      <kwd-group>
        <kwd>technologically assisted reviews</kwd>
        <kwd>active learning</kwd>
        <kwd>data balancing</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        This paper is a participant working note for the task of technologically assisted
reviews in empirical medicine [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] in CLEF eHealth 2017 [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. This task is about
applying machine learning techniques to facilitate medical researchers
conducting systematic reviews. More speci cally, the task focuses on Diagnostic Test
Accuracy (DTA) reviews since search in this area is generally considered the
hardest, and a breakthrough in this eld would likely be applicable to other
areas as well [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. Twenty DTA reviews data sets are provided for training and
thirty for testing. The problem statement of this task is:
      </p>
      <p>Given the results of a Boolean Search how to make Abstract and Title
Screening more e ective.</p>
      <p>Here, in this paper, we further specify our problem to be:</p>
      <p>
        Screen least amount of papers to retrieve most (or all) relevant ones.
This leads directly to the evaluation method{ last rel [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], which measures the
number of documents need to be screened before retrieving all relevant
documents.
      </p>
      <p>
        Previously, we analyzed the equivalent problem in software engineering (SE)
and built a high performing method FASTREAD that combines a wide range of
techniques taken from from electronic discovery and evidence based medicine [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ].
Those results suggested that FASTREAD, which took aggressive undersampling
from patient active learning [
        <xref ref-type="bibr" rid="ref10 ref11">11, 10</xref>
        ] and the rest from continuous active
learning [2{4], outperforms both of the original algorithms on SE reviews data [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ].
It indicated that, at least on SE reviews data, continuous active learning is an
e cient approach, and data balancing can further improve its performance.
      </p>
      <p>
        While the above results are promising, we advise against applying the
conclusions directly to the empirical medicine task since the target corpus are very
di erent (one from SE reviews and one from DTA reviews). In addition, the
DTA reviews data have two levels of query results, one from title and abstract
screening, the other from document screening, while the SE reviews data [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ]
only have the query results from document screening. That is, we feel that when
properly considered, reweighting can be another way to balance the training data
while more weights are put on papers identi ed as \content relevant" over those
identi ed as only \abstract relevant" or \not relevant". In this way, reweighting
not only balances the two classes, but also favors \content relevant" examples
when training the model.
      </p>
      <p>
        Besides the two-level query results, DTA reviews data also o er a brief
description of the topic being screened, which could be a great source for
\AutoSyn" described in [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] and [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. Utilizing the description as an initial seed training
example would provide better chance to retrieve \relevant" papers earlier and
reduce variances in the experiments (comparing to a random start-up). Note that
in order to train a classi er on just one \relevant" example (the description of
the topic), Presumptive non-relevant examples are generated [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. This technique
randomly samples from the unlabeled examples and treats the sampled examples
as \not relevant" in training. The low prevalence of \relevant" examples makes
this technique reasonable.
      </p>
      <p>The rest of the paper provides details about di erent approaches tested on
training data and analyzes the results. Numerous engineering decisions have
been made without fully tested due to limited time. Followed by conclusions
and future works at last.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Method</title>
      <p>
        In this section, we provide details on three approaches:
{ CAL: a baseline approach from Cormack et al. [2{4].
{ AU: add data balancing method called aggressive undersampling [
        <xref ref-type="bibr" rid="ref10 ref11">11, 10</xref>
        ] to
the baseline approach CAL.
{ RW: add reweighting method (\content relevant" papers weight more than
other papers in training) to the baseline approach CAL.
2.1
      </p>
      <sec id="sec-2-1">
        <title>Baseline: CAL</title>
        <p>
          Besides the overall framework as continuous active learning [2{4], the baseline
approach applies several prede ned engineering decisions same as our previous
work [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ]. The entire work ow can be described as follows:
1. Corpus collection: collect titles and abstracts of papers in search results.
2. Auto-Syn: add the topic description into the corpus and label it as
\abstract relevant".
3. Preprocessing: stemming, stop words removal, bag of words.
4. Featurization: term frequency, feature selection by tf-idf score (to 4000
terms), l2 normalization.
5. Training: train a binary classi er (linear SVM) on all the labeled papers,
\content relevant" and \abstract relevant" papers are treated as one class{
\relevant" while \not relevant" papers are the other class in the training.
Presumptive non-relevant examples are generated to enrich the \not
relevant" class examples.
6. Certainty sampling: use the trained classi er to predict on the rest
unlabeled papers. Sample N = 10 papers with highest probability to be
\relevant" according to the classi er.
7. Review1: ask reviewers to review the sampled papers by titles and abstracts,
label each as \abstract relevant" or \not relevant". For those papers labeled
as \abstract relevant", reviewers are asked to further review on content and
decide whether to label each as \content relevant". Go back to 5 until stop
rule is satis ed (every \content relevant" paper has been retrieved).
2.2
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>Aggressive Undersampling: AU</title>
        <p>
          First proposed by Wallace et al. in 2010 [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ], aggressive undersampling is a
technique applied in patient active learning to balance the training classes. The
only di erence between AU and the baseline approach CAL is:
5. Training: train a binary classi er (linear SVM) on all the labeled
papers, \content relevant" and \abstract relevant" papers are treated as
one class{ \relevant" while \not relevant" papers are the other class in
the training. Presumptive non-relevant examples are generated to enrich
the \not relevant" class examples. If there are more than M = 30
\relevant" papers in the training set, aggressive undersampling
is performed. It undersamples the \not relevant" papers to the
same number as \relevant" ones by throwing away the \not
relevant" papers closes to the SVM decision hyperplane. After
aggressive undersampling, SVM is retrained on the balanced
training data.
        </p>
        <p>
          The threshold of M = 30 is applied to avoid training an SVM model on too few
papers [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ].
2.3
        </p>
      </sec>
      <sec id="sec-2-3">
        <title>Reweighting: RW</title>
        <p>Reweighting (RW) is a new approach which takes advantage of the two-level
labels o ered by DTA reviews data. The di erence between RW and the baseline
approach CAL is:
1 The actual experiments are carried out without real human reviewers. When asked
for labels, the true labels in the data sets are queried instead of a human reviewer.
5. Training: train a binary classi er (linear SVM) on all the labeled
papers, \content relevant" and \abstract relevant" papers are treated
as one class{ \relevant" but \content relevant" papers have W =
10 times the weight of \abstract relevant" or \not relevant"
ones. Presumptive non-relevant examples are generated to enrich the
\not relevant" class examples.</p>
        <p>The reweighting parameter of W = 10 is chosen quite arbitrarily without fully
tested due to the limited time.
3</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Experiment</title>
      <p>Experiments are conducted in a \pseudo" way following the procedures in
Section 2. When a paper is asked to be reviewed, its true label is queried without
any real human review process. As a result, the experiments become repeatable
and reproducible.
3.1</p>
      <sec id="sec-3-1">
        <title>Data</title>
        <p>
          Twenty data sets on DTA reviews are provided as training sets for the task of
technologically assisted reviews in empirical medicine [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ]. These data sets provide
two-level query results, one for title and abstract screening and one for content
screening. As a result, we label each paper in the data sets as one of the three
classes:
{ Not relevant: papers excluded by title and abstract screening.
\Content" column displays the number of \content relevant" papers; \Abstract"
column displays the number of \content relevant" papers plus the number of \abstract
relevant" papers; \Total" column displays the total number of papers. Topic 1, 6, 19,
28, and 45 (colored in red ) are considered \not good" for last rel evaluation due to
their lack of \content relevant" papers (fewer than 5).
        </p>
        <p>{ Abstract relevant: papers included by title and abstract screening but
excluded by content screening.
{ Content relevant: papers included by title and abstract screening and
content screening.</p>
        <p>Statistics for the twenty data sets are presented in Table 1 where ve sets are
considered to be \not good" for last rel evaluations. The reason behind is that
pure \luck" might a ect the result when the target is to retrieve the only 1 (or
2, or 3) \content relevant" paper.
3.2</p>
      </sec>
      <sec id="sec-3-2">
        <title>Performance Metrics</title>
        <p>
          Since the objective is to screen least amount of papers to retrieve most (or all)
relevant ones, we choose last rel for evaluation. More speci cally, we use the
number of papers screened when every \content relevant" one is retrieved as
the performance score to take advantage of the two-level labels o ered by DTA
reviews data. This makes our last rel metrics di erent from that used in [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ].
        </p>
        <p>
          The lower the last rel score is, the fewer papers need to be manually screened,
thus the better performance. To capture the possible variances, experiments of
each method on every data set (topic) is repeated 10 times with di erent
random seeds (which a ect the presumptive non-relevant examples generated and
thus introduce variances). The last rel score for each repeat is collected while
medians and iqrs (75th-25th percentile) are calculated for comparison.
ScottKnott [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] analyses are applied on each topic to rank the performance of each
treatment. Since the last rel scores are in asymmetric and non-normal
distributions, Cli 's Delta [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ] and bootstrapping [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ] are applied for non-parametric
hypothesis test; i.e. two treatments are ranked di erently in Scott-Knott
analysis if both bootstrapping and the e ect size test agreed that the division is
statistically signi cant (99% con dence) and not a small e ect (Cli 's Delta
0.147).
3.3
        </p>
      </sec>
      <sec id="sec-3-3">
        <title>Results</title>
        <p>Table 2 shows the results on 20 topics from the training set. The rst thing
we notice is that there is no treatment ranks highest (colored in green ) across
every topic. One treatment may outperform others in one topic but performs
poorly in another topic. In addition, no domination can be found among the
three treatments (we say treatment A dominates treatment B if A performs
consistently better than B across all topics).</p>
        <p>Therefore, when it comes to the question of which treatment is the best, it
really depends on the data. However, we did summarize the results in Table 2 and
count the number of \wins" and \losts" of each treatment. As shown in Table 3,
statistically, reweighting (RW) wins more and loses less than any other
treatment. As a result, among these three treatments, we recommend reweighting
(RW), which over-weights the \content relevant" examples to balance training
data as well as emphasize \content relevant" examples.
Results collected from 10 repeated runs on 20 topics. Both medians and iqrs are lower
the better. For each topic, aggressive undersampling (AU) and reweighting (RW) are
compared along with the baseline method continuous active learning without data
balancing (CAL). Scott-Knott analyses (with Cli 's Delta and bootstrapping for
nonparametric hypothesis test) are applied to rank each treatment. The treatments with
highest rank are colored in green while the treatments with lower ranks than the
baseline (CAL) are colored in gray .</p>
        <p>Another gain from these experiments is that data balancing techniques
do improve the performances. As indicated in Table 2, on 19 out of 20 (or 14
out of 15) topics, reweighting (RW) or aggressive undersampling (AU) ranks
highest; on 13 out of 20 (or 9 out of 15) topics RW or AU ranks higher than
continuous active learning (CAL) without data balancing. This also suggests
that the ensemble of RW and AU to leverage the advantages from both data
balancing techniques might o er even better results. We plan to explore this in
our future works.</p>
        <p>Variances are within an acceptably low range (except for some of the \not
good" topics) thanks to \Auto-Syn" technique. Therefore the results are
considered to be stable and repeatable.</p>
        <p>RW
AU
CAL
\Top Rank" column displays the number of times one treatment ranks highest while
\Lower Rank thanBaseline" column displays the number of times one treatment ranks
lower than baseline treatment (CAL). The rst two columns count all 20 topics while
the last two columns only count \good" topics (excluding topics colored in red in
Table 1 and 2). One treatment is considered better than another if the number in \Top
Rank" is larger while the number in \Lower Rank thanBaseline" is smaller.
4</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Conclusion</title>
      <p>
        How to retrieve most (or all) relevant documents by screening least amount of
the candidate ones is a di cult problem which is also known in the Information
Retrieval (IR) domain as the total recall problem. Proposed by Cormack et al.
in 2014, continuous active learning has been an excellent algorithm to solve the
problem [2{4]. It was also adopted as a baseline method in the total recall task of
TREC 2015 [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. This work extended continuous active learning method by
testing two di erent data balancing techniques. Experimental results suggested that
there were no single treatment that outperforms any other treatment across all
topics. However, statistically, reweighting (RW) was considered to be most
powerful for the total recall task. This treatment applied \Auto-Syn" with topic
description as seed training data, generated \presumptive non-relevant examples"
before training to enrich the \not relevant" class, over-weighted the \content
relevant" examples for data balancing. With the reweighting treatment,
training examples were balanced (thus the model will not over- t on \not relevant"
class), and the model was trained to \favor" the \content relevant" examples
which had a positive e ect on retrieving every \content relevant" paper earlier.
      </p>
      <p>Due to the limited time, only one aspect (data balancing) has been explored
in this study. This does not imply that other aspects of the total recall task are
not worth exploring. The plans of future work include:
{ Explore the ensemble of reweighting and aggressive undersampling and other
possible data balancing techniques.
{ Many parameters in the tested treatments are chosen quite arbitrarily.
Parameter tuning can be applied to see if these parameters a ect the conclusion
and whether we can nd a better set of parameters.
{ Di erent featurization techniques can be applied to extract \richer" features
than bag-of-words or term frequencies; e.g. word vectors and citation link
features might be useful for measurement of relevance.
{ Human errors can be injected to test how robust the active learning methods
are and to what level of error rate can the system perform normally.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Cli</surname>
          </string-name>
          , N.:
          <article-title>Dominance statistics: Ordinal analyses to answer ordinal questions</article-title>
          .
          <source>Psychological Bulletin</source>
          <volume>114</volume>
          (
          <issue>3</issue>
          ),
          <volume>494</volume>
          (
          <year>1993</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Cormack</surname>
            ,
            <given-names>G.V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Grossman</surname>
            ,
            <given-names>M.R.</given-names>
          </string-name>
          :
          <article-title>Evaluation of machine-learning protocols for technology-assisted review in electronic discovery</article-title>
          .
          <source>In: Proceedings of the 37th international ACM SIGIR conference on Research &amp; development in information retrieval</source>
          . pp.
          <volume>153</volume>
          {
          <fpage>162</fpage>
          .
          <string-name>
            <surname>ACM</surname>
          </string-name>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Cormack</surname>
            ,
            <given-names>G.V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Grossman</surname>
            ,
            <given-names>M.R.</given-names>
          </string-name>
          :
          <article-title>Autonomy and reliability of continuous active learning for technology-assisted review</article-title>
          .
          <source>arXiv preprint arXiv:1504.06868</source>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Cormack</surname>
            ,
            <given-names>G.V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Grossman</surname>
            ,
            <given-names>M.R.</given-names>
          </string-name>
          :
          <article-title>Scalability of continuous active learning for reliable high-recall text classi cation</article-title>
          .
          <source>In: Proceedings of the 25th ACM International on Conference on Information and Knowledge Management</source>
          . pp.
          <volume>1039</volume>
          {
          <fpage>1048</fpage>
          .
          <string-name>
            <surname>ACM</surname>
          </string-name>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Efron</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tibshirani</surname>
            ,
            <given-names>R.J.:</given-names>
          </string-name>
          <article-title>An introduction to the bootstrap</article-title>
          . CRC press (
          <year>1994</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Goeuriot</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kelly</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Suominen</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Neveol</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Robert</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kanoulas</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Spijker</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Palotti</surname>
            ,
            <given-names>J.R.M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zuccon</surname>
          </string-name>
          , G.:
          <article-title>Clef 2017 ehealth evaluation lab overview</article-title>
          .
          <source>In: Experimental IR Meets Multilinguality</source>
          , Multimodality, and Interaction - 8th
          <source>International Conference of the CLEF Association, CLEF</source>
          <year>2017</year>
          , Dublin, Ireland,
          <source>September 11-14</source>
          ,
          <year>2017</year>
          ,
          <source>Proceedings. Lecture Notes in Computer Science</source>
          , Springer (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Kanoulas</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Azzopardi</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Spijker</surname>
          </string-name>
          , R.:
          <article-title>Overview of the CLEF technologically assisted reviews in empirical medicine</article-title>
          .
          <source>In: Working Notes of CLEF</source>
          <year>2017</year>
          <article-title>- Conference and Labs of the Evaluation forum</article-title>
          , Dublin, Ireland,
          <source>September 11-14</source>
          ,
          <year>2017</year>
          . CEUR Workshop Proceedings, CEUR-WS.org (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Roegiest</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cormack</surname>
            ,
            <given-names>G.V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Grossman</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Clarke</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Trec 2015 total recall track overview</article-title>
          .
          <source>Proc. TREC-2015</source>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Scott</surname>
            ,
            <given-names>A.J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Knott</surname>
            ,
            <given-names>M.:</given-names>
          </string-name>
          <article-title>A cluster analysis method for grouping means in the analysis of variance</article-title>
          . Biometrics pp.
          <volume>507</volume>
          {
          <issue>512</issue>
          (
          <year>1974</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Wallace</surname>
            ,
            <given-names>B.C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Small</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Brodley</surname>
            ,
            <given-names>C.E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Trikalinos</surname>
            ,
            <given-names>T.A.</given-names>
          </string-name>
          :
          <article-title>Active learning for biomedical citation screening</article-title>
          .
          <source>In: Proceedings of the 16th ACM SIGKDD international conference on Knowledge discovery and data mining</source>
          . pp.
          <volume>173</volume>
          {
          <fpage>182</fpage>
          .
          <string-name>
            <surname>ACM</surname>
          </string-name>
          (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Wallace</surname>
            ,
            <given-names>B.C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Trikalinos</surname>
            ,
            <given-names>T.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lau</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Brodley</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schmid</surname>
            ,
            <given-names>C.H.</given-names>
          </string-name>
          :
          <article-title>Semiautomated screening of biomedical citations for systematic reviews</article-title>
          .
          <source>BMC bioinformatics 11(1)</source>
          ,
          <volume>1</volume>
          (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Yu</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kraft</surname>
            ,
            <given-names>N.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Menzies</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>How to read less: Better machine assisted reading methods for systematic literature reviews</article-title>
          .
          <source>CoRR abs/1612</source>
          .03224 (
          <year>2016</year>
          ), http://arxiv.org/abs/1612.03224
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Zhang</surname>
          </string-name>
          , H.,
          <string-name>
            <surname>Lin</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Clarke</surname>
            ,
            <given-names>C.L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Smucker</surname>
          </string-name>
          , M.D.: Waterlooclarke:
          <article-title>Trec 2015 total recall track</article-title>
          .
          <source>In: TREC</source>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>