<!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>IRIT &amp; MISA at Image CLEF 2017 - Multi label classi cation</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Nomena Ny Hoavy</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Josiane Mothe</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Mamitiana Ignace Randrianarivony</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Univ. Antananarivo</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Madagascar</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Univ. Toulouse</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>France</string-name>
        </contrib>
      </contrib-group>
      <abstract>
        <p>In this paper, we describe the participation of the Mami team at ImageCLEF 2017 for the Image Caption task. We participated to the concept detection subtask which aims at assigning a set of concept labels to a medical image. We used transfer learning method with VGG19 model for feature extraction to solve this task, and apply those features as input of a new neural network.</p>
      </abstract>
      <kwd-group>
        <kwd>Information systems</kwd>
        <kwd>Information retrieval</kwd>
        <kwd>multi-label classi cation</kwd>
        <kwd>convolutional neural network</kwd>
        <kwd>transfer learning</kwd>
        <kwd>ne-tuning</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>In this paper, we describe the participation of the Mami team to ImageCLEF
2017 for the Image Caption task. This team results from a collaboration between
IRIT SIG team from the Universite de Toulouse (France) and MISA from the
Universit d'Antananarivo (Madagascar).</p>
      <p>
        The Image Caption task consists in two subtasks: concept detection and
caption prediction. The main goal of the concept detection task is to identify
the existence of relevant biomedical concepts in the medical images delivered
by the organizers (see [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] for a general overview and [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] for the Caption task
overview as well as its web page [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]).
      </p>
      <p>This problem can be see as a classi cation problem where each class
corresponds to a concept label. As each image may contain multiple concepts, we
tackled this task as a multi-label classi cation problem. The multi-label classi cation
consists to associate a given instance xi 2 X to a set of labels Yi = yi1; ::; yili 2 Y .
Where xi is the instance of the i-st image and Yi the set of concepts xi belongs
to. li is the number of concepts in Yi.</p>
      <p>
        We used deep learning method to solve this problem. Deep convolutional
neural networks are considered among the best classi ers for single-label image
classi cation [
        <xref ref-type="bibr" rid="ref12 ref14">12,14</xref>
        ].
      </p>
      <p>In this work, we adapt a convolutional neural network with transfers learning
to multi-label classi cation task.</p>
      <p>In the next section we present in Section 2 a brief analysis of the dataset used
in the concept detection subtask. We then present in Section 3 the method we
developed. Section 4 presents the results while Section 4 concludes the paper.</p>
    </sec>
    <sec id="sec-2">
      <title>Dataset and data exploration</title>
      <p>The dataset we used was delivered by the image CLEF Lab and contains 3
subsets: the training set is composed of 164,614 images and 20,463 labels; the
validation set consists of 10,000 images and 7,070 labels from which 309 are not
in the training set nor in the test set. The test set contains 10,000 images.</p>
      <p>Table 2 presents some characteristics of the training set.</p>
      <p>mean
std
min
25%
50%
75%
max</p>
      <p>Number of labels per image
5.58
4.47
0.00
3.00
4.00
7.00
75.00
mean
std
min
25%
50%
75%
max</p>
      <p>Number of images per label
44.95
320.06
1.00
1.00
3.00
13.00
17,998.00</p>
      <p>We found that 3.9% of the training images and 3.79% of the validation images
have no labels.
3</p>
    </sec>
    <sec id="sec-3">
      <title>Method we developed</title>
      <p>
        As said previously, we used a convolutional neural network. For the transfer
learning [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ], we used the Oxford VGG19 model from Simonyan et al. [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ]. This
model performed well at ImageNet Large Scale Visual Recognition Challenge
(ILVRC 2012 [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ]) for classifying images over 1,000 classes [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ].
      </p>
      <p>As illustrated in Figure 1, the Oxford VGG19 model consists in 19 layers.
To adapt the pre-trained model 3 to the imageCLEF Concept detection task, we
froze the parameters of the 18 rst layers and add 2 new layers above it. Our
learning consists to train the 2 new layers to map the images to the corresponding
concepts. The goal of the training is to assign a positive score to concepts the
given image belongs to. The method consists in 2 steps that are described in the
following sub-sections.
3.1</p>
      <sec id="sec-3-1">
        <title>Processing</title>
        <p>
          The rst step of the process we developed is to forward each image to the VGG19
model and extract the output of the second to last layer of the VGG19 CNN
3 The VGG19 model trained on ILSRVC-2014 http://www.robots.ox.ac.uk/
%7Evgg/research/very_deep/
(fully connected layer 7(fc7)). This output, named feature vector, is a 4,096
dimensional vector. This feature vector summarizes the representation of the
forwarded image. This representation helps to gain time and space on disk, as
suggested by Sharif et al. [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ]. Moreover, Bengio et al. suggested that learning
from such a feature vector gives a great potential in various vision recognition
tasks [
          <xref ref-type="bibr" rid="ref2 ref3">2,3</xref>
          ].
        </p>
        <p>Then, the feature vector is sent to the rst new layer we add for multi-label
classi cation ; this process results in scores associated to each concept or label.
To train our model for assigning positive scores to the relevant concepts, we
adopted the sigmoid cross entropy as loss function.</p>
        <p>Let us de ne:
p^n = (xn) 2 [0; 1],</p>
        <p>the sigmoid function,
xn the predicted score for the concept n,
pn = 1 if the image belongs to the concept n and 0 otherwise.</p>
        <p>
          Formally, the sigmoid cross entropy loss [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ] E is :
        </p>
        <p>E =</p>
        <p>N
1 X[pn log p^n + (1
n n=1
pn) log(1
p^n)]:
(1)
3.2</p>
      </sec>
      <sec id="sec-3-2">
        <title>Training</title>
        <p>We used the test/validation method to train our model performance and its
capacity to generalize on new data. For that, we kept the data sets as split by
the organizers. We trained our model using the training set. The validation set
serves then as a new data set to validate the model performance and to tune the
hyper parameters of the model. We trained our model with a stochastic gradient
descent method using 0,0001 as learning rate (which corresponds to 1/10 of the
pre-trained model initial learning rate) and a batch size of 128.</p>
        <p>We preserved the momentum default value: 0.9 and set the weight decay
5:10 4. After 150 epochs, training stopped and the resulting model was stored
although it converges to E=42.547 . The delivered model is applied to predict
the concepts in the validation and test data sets; the results are presented in the
following section.
4</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Results and Discussion</title>
      <p>
        The task organizers suggested F1-score [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] to evaluate the results. F1-score is the
average of F1-scores. It represents the weighted average of precision and recall.
      </p>
      <p>We also added 2 other measures to check the performance of our model
on the validation dataset : exact matching ratio measure, Hamming loss. The
results are detailed in Table 3. As we predicted a vector, the exact matching
ratio corresponds to the percentage of correctly predicted vector elements. This
measure does not take into account partially correct predictions. The formula is:
M R =
1 N</p>
      <p>X I(yi = xi):</p>
      <p>
        N i=1
where N is the number of samples, yi the ground truth vector, and xi is the
prediction vector. The Hamming loss (HamLoss) computes the percentage of
labels that are misclassi ed in a multi-label classi cation, i.e., relevant labels
that are not predicted or irrelevant labels that are predicted [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. The formula is
given by:
      </p>
      <p>HamLoss =</p>
      <p>N i=1
1 XN xor(xi; yi) :</p>
      <p>L
(2)
(3)
where N is the number of samples, L the number of labels, yi the ground truth,
and xi is the prediction.</p>
      <p>Table 2 presents the results for our model when evaluated on the validation
data set with the di erent measures as mentioned before. The same con guration
of the model was used for our unique run named DET CORRECTED mami resulat.txt
that we submitted to ImageCLEF and that was evaluated by the organizers on
the test set (see Table 3 for the results).</p>
      <p>
        Measure Names
F1-score
Exact matching ratio
Hamming loss
The model we developed to participate to ImageCLEF 2017 uses a transfer
learning based on VGG19 and that we adapt for multi-label classi cation. Using
this model, we obtain a low F1-score (0.0462) on the test set. Our result is far
from the other teams. We expect to improve this score by using more appropriate
machine that will make it possible to make a better training. We would like
to make a ner tuning and deeper network. Alternatively, we could experiment
with another classi er like SVM to classify the feature vectors that we extracted.
Also, one of the main issue we faced was to handle the medical compound images
(like formula, graphs, ) that is more complex to process. We envisage to tackle
this problem using Region based CNN (R-CNN) [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]. On other hand, previous
works [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] can be used to extract relevant regions that can be used for a MIML
(Multi-Instance Multi-Label) learning [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ]. Unfortunately, our current facilities
in terms of computing did not allow us to do more while the competition was
still open.
      </p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Beckham</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pal</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>A simple squared-error reformulation for ordinal classi cation</article-title>
          .
          <source>arXiv preprint arXiv:1612.00775</source>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Bengio</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Courville</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vincent</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Representation learning: A review and new perspectives</article-title>
          .
          <source>IEEE transactions on pattern analysis and machine intelligence</source>
          <volume>35</volume>
          (
          <issue>8</issue>
          ), 1798{
          <year>1828</year>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Coates</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lee</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ng</surname>
            ,
            <given-names>A.Y.</given-names>
          </string-name>
          :
          <article-title>An analysis of single-layer networks in unsupervised feature learning</article-title>
          .
          <source>Ann Arbor</source>
          <volume>1001</volume>
          (
          <issue>48109</issue>
          ),
          <volume>2</volume>
          (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Eickho</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schwall</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          , Garc a Seco de Herrera,
          <string-name>
            <surname>A.</surname>
          </string-name>
          , Muller, H.:
          <article-title>Overview of ImageCLEFcaption 2017 - image caption prediction and concept detection for biomedical images</article-title>
          .
          <source>CLEF working notes</source>
          ,
          <source>CEUR</source>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Girshick</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Donahue</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Darrell</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Malik</surname>
          </string-name>
          , J.:
          <article-title>Rich feature hierarchies for accurate object detection and semantic segmentation</article-title>
          .
          <source>In: Proceedings of the IEEE conference on computer vision and pattern recognition</source>
          . pp.
          <volume>580</volume>
          {
          <issue>587</issue>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Hosang</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Benenson</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schiele</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>How good are detection proposals</article-title>
          ,
          <source>really? arXiv preprint arXiv:1406.6962</source>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Ionescu</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          , Muller, H.,
          <string-name>
            <surname>Villegas</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Arenas</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Boato</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dang-Nguyen</surname>
            ,
            <given-names>D.T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dicente Cid</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Eickho</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Garcia Seco de Herrera</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gurrin</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Islam</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kovalev</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liauchuk</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mothe</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Piras</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Riegler</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schwall</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          :
          <article-title>Overview of ImageCLEF 2017: Information extraction from images</article-title>
          .
          <source>In: CLEF 2017 Proceedings. Lecture Notes in Computer Science</source>
          , vol.
          <volume>10456</volume>
          . Springer, Dublin,
          <source>Ireland (September</source>
          <volume>11</volume>
          -14
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Menc</surname>
            <given-names>a</given-names>
          </string-name>
          ,
          <string-name>
            <surname>E.L.</surname>
          </string-name>
          , Furnkranz, J.:
          <article-title>E cient multilabel classi cation algorithms for largescale problems in the legal domain</article-title>
          .
          <source>In: Semantic Processing of Legal Texts</source>
          , pp.
          <volume>192</volume>
          {
          <fpage>215</fpage>
          . Springer (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Ren</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>He</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Girshick</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sun</surname>
          </string-name>
          , J.:
          <string-name>
            <surname>Faster</surname>
          </string-name>
          r-cnn:
          <article-title>Towards real-time object detection with region proposal networks</article-title>
          .
          <source>In: Advances in neural information processing systems</source>
          . pp.
          <volume>91</volume>
          {
          <issue>99</issue>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10. roger: ImageCLEFcaption. http://imageclef.org/2017/caption/ (
          <year>2017</year>
          ), [Online; accessed 17-May-2017]
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Russakovsky</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Deng</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Su</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Krause</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Satheesh</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , Ma,
          <string-name>
            <given-names>S.</given-names>
            ,
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            ,
            <surname>Karpathy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Khosla</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Bernstein</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.</surname>
          </string-name>
          , et al.:
          <article-title>Imagenet large scale visual recognition challenge</article-title>
          .
          <source>International Journal of Computer Vision</source>
          <volume>115</volume>
          (
          <issue>3</issue>
          ),
          <volume>211</volume>
          {
          <fpage>252</fpage>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Shankar</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Garg</surname>
            ,
            <given-names>V.K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cipolla</surname>
          </string-name>
          , R.:
          <article-title>Deep-carving: Discovering visual attributes by carving deep neural nets</article-title>
          .
          <source>In: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition</source>
          . pp.
          <volume>3403</volume>
          {
          <issue>3412</issue>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <given-names>Sharif</given-names>
            <surname>Razavian</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Azizpour</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            ,
            <surname>Sullivan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Carlsson</surname>
          </string-name>
          ,
          <string-name>
            <surname>S.</surname>
          </string-name>
          :
          <article-title>Cnn features o -theshelf: an astounding baseline for recognition</article-title>
          .
          <source>In: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition Workshops</source>
          . pp.
          <volume>806</volume>
          {
          <issue>813</issue>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Simonyan</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zisserman</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Very deep convolutional networks for large-scale image recognition</article-title>
          .
          <source>arXiv preprint arXiv:1409.1556</source>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Uijlings</surname>
            ,
            <given-names>J.R.</given-names>
          </string-name>
          , Van De Sande,
          <string-name>
            <given-names>K.E.</given-names>
            ,
            <surname>Gevers</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            ,
            <surname>Smeulders</surname>
          </string-name>
          ,
          <string-name>
            <surname>A.W.</surname>
          </string-name>
          :
          <article-title>Selective search for object recognition</article-title>
          .
          <source>International journal of computer vision 104(2)</source>
          ,
          <volume>154</volume>
          {
          <fpage>171</fpage>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Yosinski</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Clune</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bengio</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lipson</surname>
          </string-name>
          , H.:
          <article-title>How transferable are features in deep neural networks?</article-title>
          <source>In: Advances in neural information processing systems</source>
          . pp.
          <volume>3320</volume>
          {
          <issue>3328</issue>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Zhou</surname>
            ,
            <given-names>Z.H.</given-names>
          </string-name>
          , Zhang,
          <string-name>
            <given-names>M.L.</given-names>
            ,
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.J.</given-names>
            ,
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <surname>Y.F.</surname>
          </string-name>
          <article-title>: Multi-instance multi-label learning</article-title>
          .
          <source>Arti cial Intelligence</source>
          <volume>176</volume>
          (
          <issue>1</issue>
          ),
          <volume>2291</volume>
          {
          <fpage>2320</fpage>
          (
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>