<!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>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Similarity Function</string-name>
        </contrib>
      </contrib-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>We evaluate the proposed News2Images on a big media data
including more-than one million news articles served through a
Korean media portal website, NAVER2, in 2014. Experimental
results show our method outperforms a baseline method based on
word occurrence in terms of both quantitative and qualitative
criteria. Moreover, we discuss some future directions for applying
News2Images to personalized news recommender systems.</p>
    </sec>
    <sec id="sec-2">
      <title>2. DEEP LEARNING-BASED FEATURE</title>
    </sec>
    <sec id="sec-3">
      <title>REPRESENTATION</title>
      <p>
        Most news articles consist of a title, a document, and attached
images. Mathematically, a news article x is defined as a triple
x  {t, S ,V } , where t, S, and V denote a title, the set of document
sentences, and an image set. V can be an empty set. A title t and a
document sentence s, s  S , are represented as a vector of word
features such as occurrence frequency or word embedding. An
image v, v V is also defined as a vector of visual features such
as Scale invariant feature transform (SIFT) [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] or CNN features.
For representing a news article with a feature vector, we use deep
learning in this study.
      </p>
      <p>
        Many recent studies have reported that the hidden node values
generated from deep learning models such as word embedding
networks and CNNs are very useful for diverse problems
including image classification [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ], image descriptive sentence
generation [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ], and language models [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ].
      </p>
      <p>
        Formally, a word w is represented as a real-valued vector,
w d , where d is the dimension of a word vector. The vector
value of each word is learned from a large corpus by word2vec
[
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]. This distributed word representation, called word embedding,
is to not only characterize the semantic and the syntactic
information but also overcome the data sparsity problem [
        <xref ref-type="bibr" rid="ref10 ref6">6, 10</xref>
        ].
It means that two words with similar meaning are located at a
close position in the vector space. A sentence or a document can
be represented as a real-valued vector as well. Sentence or
document vectors can be generated by learning of deep networks,
or they are calculated by pooling the word vectors included in the
sentences. Here a sentence vector is calculated by average
pooling:
si 
1
| s | ws wi ,
(1)
where w and s denote a word and the set of words included in a
sentence. Also, si and wi are the i-th element of embedding vector
s and w corresponding to s and w, respectively. Simple average
pooling leads to lose sequence information of words. Therefore,
the concatenation of multiple word vectors and the sliding
window strategy can be used instead of simple pooling.
Image features can be generated for an input image by the CNNs
learned from a large-scale image database. Typically, the hidden
node values of the fully connected layer below the top softmax
layer of CNNs are used as features. The CNN image features are
also represented as a (non-negative) real-valued vector and they
are known to be distinguishable for object recognition.
2 www.naver.com
HTML
      </p>
      <p>News
Documents
Image</p>
      <p>Based
Contents</p>
      <p>Summarization</p>
      <p>Function
(Similarity &amp;</p>
      <p>Diversity)
Sentence
Vector Set
Synthesized</p>
      <p>Images
k Extracted
Sentence
Vectors
Retrieved
Images
Data Flow
Function Flow</p>
      <p>Image
Synthesis
Function
Similarity
Function</p>
      <p>Retrieved</p>
      <p>Titles
Generated</p>
      <p>Image
Features</p>
      <p>News
Title-Image
Database
Learned</p>
      <p>CNN
Model</p>
    </sec>
    <sec id="sec-4">
      <title>3. NEWS-TO-IMAGES</title>
      <p>News2Images is a method of generating image-based contents
from a given news document using summarization and
text-toimage retrieval. News2Images consists of three parts including
key sentence extraction based on the single document
summarization, key sentence-related image retrieval by
associating images with sentences, and image-based content
generation by synthesizing sentences and images. Figure 2 shows
the overall framework of News2Images.</p>
    </sec>
    <sec id="sec-5">
      <title>3.1 News Document Summarization</title>
      <p>
        Document summarization is a task of automatically generating a
minority of key sentences from an original document, minimizing
loss of the content information [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]. Two approaches are mainly
used for document summarization. One is abstraction which is to
generate a few new sentences. Abstraction more precisely
summarizes a document but still remains a challenging issue. The
other is extraction, to select some core sentences from a document,
and we use the extraction approach in this study. Also, the news
summarization in this study belongs to single document
summarization [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. We assume two conditions for the
summarization:
i)
      </p>
      <p>A news title is the best sentence consistently representing
the entire content of the news.
ii) A news article consists of at least two sentences and the
entire content is built up by composing its sentences’
content.</p>
      <p>For precisely summarizing a news document, thus, it is required
that a summarized sentence set consists of the sentences not only
semantically similar to its title but also covering the entire content
with diverse words. We call the former similarity and the latter
diversity.</p>
      <p>Formally, a document S is defined as a set of its sentences,
S  {s1, ...,sM } , where M denotes the number of the sentences
included in S. The i-th sentence si is represented as a real-valued
vector, si  d , where d is the vector size, by word2vec and
average pooling. Then, document summarization is formulated
with
Sk*  arg max  f  Sk , S   1    g  Sk , S </p>
      <p>Sk S
 arg max  f  Sk ,t   1    g  Sk , S </p>
      <p>Sk S
where t denotes the title of S, Sk and Sk* are the set of k
sentences extracted and an optimal set among Sk . f  Sk , S  and
g  Sk , S  denote the similarity and the diversity functions, and
 is the constant for moderating the ratio of two criteria.
The similarity f (s, t) between a given sentence s and a news title
t is defined as the cosine similarity between two sentence
embedding vectors:
f (s,t) 
s  t
s t
.</p>
      <p>For calculating the diversity, we partition the sentences of S into
multiple subsets using a clustering method. Because a sentence
vector implicitly reflects syntactic and semantic information,
multiple semantically distinctive subsets are generated by
clustering. For the j-th cluster Cj, we calculate the cosine
similarity between all the sentences in Cj and the centroid of Cj.
Because the cosine similarity can be negative, we consider a
negative value as zero. This value is defined as the diversity:
g(s,C j ) 
s  c j
s
c j
where cj denotes the centroid vector of Cj.</p>
      <p>Finally, k sentences with the largest value defined in (2) are
extracted as the summarization set for the given document. Here
we set k to three, which means that a news article is summarized
into three image-based contents.</p>
    </sec>
    <sec id="sec-6">
      <title>3.2 Sentence-to-Image Retrieval</title>
      <p>The second subtask is to retrieve the images representing
semantics similar to the extracted sentences. Because we use the
images attached in news articles, the title of a news including an
image can be used as a description sentence of the image.
(2)
(3)
(4)
Therefore, the semantic similarity of an image to an extracted
sentence is calculated by measuring the similarity between the
image title vector and the sentence vector.</p>
      <p>Formally, when an image feature vector set, V={v1, …, vN}, is
given, the images similar to an extracted sentence sˆ are extracted:
 sˆ  t(v) 
v*  arg max  f sˆ, t(v)  arg max   ,
vV vV | sˆ || t(v) | 
(5)
where t(v) denotes the title of an image v.</p>
      <p>Due to the diversity, sentences which are not directly related to
the title may be extracted as a core sentence. We assume that a
title is “Yuna Kim decided to participate in 2013 world figure
skating championship”, and two extracted sentences are “Yuna
Kim will take part in the coming world figure skating
championship” and “The competition will be held in February.”
In this case, the title is not semantically similar to the second
sentence. Thus it is difficult to associate the second sentence with
Yuna Kim’s images. For overcoming this, we can additionally use
the title vector of the news articles given as a query for pooling
word vectors into a sentence vector. The use of the news title does
not influence the summarization because the title vector is
reflected on all the sentence vectors.</p>
      <p>Instead of v*, we can generate a new image vector vˆ by averaging
the vectors of top K images with the large similarity value. Then,
v* is selected as follows:
v*  arg max f  vˆ, v ,</p>
      <p>vV
vˆi 
vVK</p>
      <p>R(v)</p>
      <p>v ,
R(v) i
(6)
(7)
where vi is the i-th element of v and R(v) denotes a weight
function proportional to the similarity rank. An image more
similar to vˆ has a larger R(v).</p>
    </sec>
    <sec id="sec-7">
      <title>3.3 Image-Based Content Generation</title>
      <p>Readability is a main issue of mobile content service. Therefore
we generate new image-based contents instead of using the
retrieved images for improving the readability and enhancing the
users’ interests. An image-based content includes continuous
series of synthesized images where the retrieved images and their
corresponding sentences are merged. Figure 1 illustrates an
example of the image-based contents from a news document.</p>
    </sec>
    <sec id="sec-8">
      <title>4. EXPERIMENTAL RESULTS</title>
    </sec>
    <sec id="sec-9">
      <title>4.1 Data and Parameter Setting</title>
      <p>We evaluate the proposed News2Images on a big media data
including over one million Korean news articles, which are
provided by a media portal site, NAVER, in 2014. In detail, the
word vectors are learned from all the news documents and the
CNN models for constructing image features are trained from
approximately 220 thousands of news images, which are related to
100 famous entertainers, movie stars, and sports stars. Also, 6,967
news articles are used as the validation set for evaluating the
performance. Three key sentences were extracted from a news
article including more than three sentences and we used all the
sentences in the news consisting of less than three sentences. Then,
20,224 image-based contents were generated from validation
news data in total.</p>
      <p>
        We used the word2vec for word embedding and modified
GoogleNet implemented in Caffe for CNN features [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. The word
vector and image feature sizes are 100 and 1024, respectively. For
error correction in learning CNNs, we set the label of an image to
the person name in the image. Thus, the size of the class label set
is 100. The learned CNN model for generating image features
yields 0.56 and 0.79 as Top-1 and Top-5 classification accuracies,
respectively. This indicates that the generated image features are
distinguishable enough to be used for associating images and
sentences. The number of clusters for the diversity in
summarization was set to 3 and the constant moderating the
similarity and the diversity is 0.9.
      </p>
      <p>For comparisons, we used a word occurrence vector based on
TF/IDF as a baseline in computing the similarity between
sentences and titles, instead of a word embedding vector. TF/IDF
has been widely used for text mining, and thus we can verify the
effects of deep learning-based word features.</p>
    </sec>
    <sec id="sec-10">
      <title>4.2 Content Generation Accuracy</title>
      <p>Human efforts are still essential for precisely measuring how
similar the generated image-based contents are semantically to the
news document given as a query. Instead of manual evaluation by
|W| denotes the number of concatenated word vectors.</p>
      <sec id="sec-10-1">
        <title>News title</title>
        <sec id="sec-10-1-1">
          <title>Correct #</title>
        </sec>
        <sec id="sec-10-1-2">
          <title>Accuracy</title>
        </sec>
      </sec>
      <sec id="sec-10-2">
        <title>Image size</title>
        <sec id="sec-10-2-1">
          <title>Correct #</title>
        </sec>
        <sec id="sec-10-2-2">
          <title>Accuracy</title>
        </sec>
      </sec>
      <sec id="sec-10-3">
        <title>Proper noun weight</title>
        <p>Correct #
Accuracy
humans, we consider a classification problem as the similarity
evaluation. That is, for a given extracted news sentence, we
consider that the retrieved image is similar to the sentence when
the persons referred in the sentence exist in the image. It is
reasonable because this means the method provides diverse
images of a movie star for users when a user reads a news about
the star.</p>
        <p>Table 1 compares the classification accuracy of the baseline and
the proposed method. As shown in Table 1, News2Images
outperforms the baseline method. This indicates the word
embedding features used in News2Images more precisely
represent semantics, compared to TF/IDF-based features. Also, we
compared the cosine similarity between the titles of the retrieved
images and the extracted sentences using their word embedding
vectors. The values are averaged on the titles of 20,224 retrieved
images. We can find that our method retrieves the images more
semantically similar to the extracted sentences.</p>
      </sec>
    </sec>
    <sec id="sec-11">
      <title>4.3 Effects of Parameters on Performance</title>
      <p>We compare the accuracies of the generated contents under four
parameters including i) the use of news title for pooling word
vectors into a sentence vector, ii) the number of retrieved images
for an image feature, iii) the weight for proper nouns, and iv) the
size of concatenated word vectors. Table 2 presents the accuracy
improvement when the title of the summarized news documents is
used. We found that the use of the news title dramatically
improves the accuracy as 30% compared to the case in which the
titles are not used. Interestingly, News2Images not using titles
provides the similar performance to the baseline method using
titles. Table 3 shows the effects of averaging multiple image
features on sentence-to-image retrieval. This indicates that
generating a new image feature from multiple image features has
no effect on enhancing the performance. To give more weight to
proper nouns can improve the quality of the image-based content
generation because proper nouns are likely to be a key content of
the news. The results in Table 4 support this hypothesis. The
number of concatenated word vectors rarely influences the
accuracy. We indicate that the information on word sequences is
not essential to classify the person in the images from Table 5.</p>
    </sec>
    <sec id="sec-12">
      <title>4.4 Image-Based Contents as News</title>
    </sec>
    <sec id="sec-13">
      <title>Summarization</title>
      <p>Figure 3 illustrates good and bad examples of image-based
contents from news articles. Most of the images are related to the
news contents but the sentences including polysemy or too many
words are occasionally linked to images not relevant to the
sentences. This is caused that one word is represented as only one
vector regardless of its meaning. Also, the representation power of
pooling-based sentence embedding can be weaken due to the
property of average pooling when a sentence consists of too many
words.</p>
    </sec>
    <sec id="sec-14">
      <title>5. DISCUSSION</title>
      <p>We proposed a new method for summarizing news articles into
image-based contents, News2Images. These image-based contents
are useful for providing the news for mobile device users while
enhancing the readability and interests. Deep learning-based text
and image features used in the proposed method improved the
performance as approximately 24% of the classification accuracy
and 0.23 of the cosine similarity compared to the TF/IDF baseline
method. Our study has an originality in aspect of generating new
image contents from news documents even if many studies on
summarization or text-to-image retrieval have been reported.
This method can be applied to a personalized news recommender
system adding user preference information such as subject
categories and persons preferred by a user and feedback
information into the method. In detail, we can give a weight to
words related to subjects or persons preferred by a user when
generating sentence vectors. This strategy allows the sentences
which the user is likely to feel an interest in to have higher score
in summarization and retrieval, thus exposing the photos which
the user prefers.</p>
      <p>Evaluation should be also improved. Although we evaluate the
proposed method with the cosine similarity-based measure and the
classification accuracy, it has a limitation for precisely measuring
the similarity between the news articles and the image contents
generated. It is required to make a ground truth dataset by humans,
which not only helps to more precisely evaluate the model
performance and can be used as a good dataset for
recommendation as well as image-text multimodal learning.
Furthermore, we will verify the effects of News2Images on the
improvements of the readability through human experiments as
future work.</p>
      <p>
        The proposed method can be improved by adding the module of
efficiently learning a common semantic hypothesis represented
with sentences and images using a unified model [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ].
      </p>
    </sec>
    <sec id="sec-15">
      <title>ACKNOWLEDGMENTS</title>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <surname>Datta</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Joshi</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          and
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>J. Z.</given-names>
          </string-name>
          <year>2008</year>
          .
          <article-title>Image retrieval: Ideas, influences, and trends of the new age</article-title>
          .
          <source>ACM Computing Surveys (CSUR)</source>
          .
          <volume>40</volume>
          ,
          <issue>2</issue>
          . 5.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <surname>Hinton</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          et al.
          <year>2012</year>
          .
          <article-title>Deep neural networks for acoustic modeling in speech recognition</article-title>
          ,
          <source>IEEE Signal Processing Magazine</source>
          .
          <volume>29</volume>
          ,
          <issue>6</issue>
          .
          <fpage>82</fpage>
          -
          <lpage>97</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <surname>Irsoy</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          and
          <string-name>
            <surname>Cardie</surname>
            <given-names>C.</given-names>
          </string-name>
          ,
          <article-title>Deep recursive neural networks for compositionality in language</article-title>
          .
          <source>In Advances in Neural Information Processing Systems</source>
          <year>2014</year>
          .
          <fpage>2096</fpage>
          -
          <volume>2104</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <surname>Jia</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          et al.
          <year>2014</year>
          .
          <article-title>Caffe: Convolutional architecture for fast feature embedding</article-title>
          .
          <source>In Proceedings of the ACM International Conference on Multimedia</source>
          <year>2014</year>
          .
          <fpage>675</fpage>
          -
          <lpage>678</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <surname>Krizhevsky</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sutskever</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          , and
          <string-name>
            <surname>Hinton</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <year>2012</year>
          .
          <article-title>Imagenet classification with deep convolutional neural networks</article-title>
          .
          <source>In Advances in Neural Information Processing Systems</source>
          <year>2012</year>
          .
          <fpage>1097</fpage>
          -
          <lpage>1105</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <surname>LeCun</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bengio</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          , and
          <string-name>
            <surname>Hinton</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <year>2015</year>
          .
          <article-title>Deep learning</article-title>
          .
          <source>Nature</source>
          .
          <volume>521</volume>
          ,
          <issue>7553</issue>
          .
          <fpage>436</fpage>
          -
          <lpage>444</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <surname>Lin</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          -Y. and
          <string-name>
            <surname>Hovy</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          <year>2002</year>
          .
          <article-title>From single to multidocument summarization: a prototype system and its evaluation</article-title>
          .
          <source>In Proceedings of the 40th Annual Meeting on Association for Computational Linguistics (ACL '02)</source>
          .
          <fpage>457</fpage>
          -
          <lpage>464</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <surname>Lowe</surname>
            ,
            <given-names>D. G.</given-names>
          </string-name>
          <year>2004</year>
          .
          <article-title>Distinctive image features from scaleinvariant keypoints</article-title>
          .
          <source>International Journal of Computer Vision</source>
          .
          <volume>60</volume>
          ,
          <issue>2</issue>
          .
          <fpage>91</fpage>
          -
          <lpage>110</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <surname>McDonald</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <year>2007</year>
          .
          <article-title>A study of global inference algorithms in multi-document summarization</article-title>
          . Springer Berlin Heidelberg. 557-
          <fpage>564</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <surname>Mikolov</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sutskever</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Corrado</surname>
            ,
            <given-names>G. S.</given-names>
          </string-name>
          , and
          <string-name>
            <surname>Dean</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <year>2013</year>
          .
          <article-title>Distributed representations of words and phrases and their compositionality</article-title>
          .
          <source>In Advances in Neural Information Processing Systems</source>
          <year>2013</year>
          .
          <fpage>3111</fpage>
          -
          <lpage>3119</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <surname>Salakhutdinov</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mnih</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , and
          <string-name>
            <surname>Hinton</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <year>2007</year>
          .
          <article-title>Restricted Boltzmann machines for collaborative filtering</article-title>
          .
          <source>In Proceedings of the 24th International Conference on Machine Learning (ICML</source>
          <year>2007</year>
          ).
          <fpage>791</fpage>
          -
          <lpage>798</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <surname>Socher</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lin</surname>
          </string-name>
          , C. C.-Y.,
          <string-name>
            <surname>Ng</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          , and
          <string-name>
            <surname>Manning</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <year>2011</year>
          .
          <article-title>Parsing natural scenes and natural language with recursive neural networks</article-title>
          .
          <source>In Proceedings of the 28th International Conference on Machine Learning (ICML-11)</source>
          .
          <fpage>129</fpage>
          -
          <lpage>136</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <surname>Van den Oord</surname>
          </string-name>
          , A.,
          <string-name>
            <surname>Dieleman</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , and
          <string-name>
            <surname>Schrauwen</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          <year>2013</year>
          .
          <article-title>Deep content-based music recommendation</article-title>
          ,
          <source>In Advances in Neural Information Processing Systems</source>
          <year>2013</year>
          .
          <fpage>2643</fpage>
          -
          <lpage>2651</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <surname>Xu</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ba</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kiros</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Courville</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Salakhutdinov</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zemel</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          , and
          <string-name>
            <surname>Bengio</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          <year>2015</year>
          .
          <article-title>Show, attend and tell: Neural image caption generation with visual attention</article-title>
          .
          <source>In Proceedings of 32th International Conference on Machine Learning (ICML'15).</source>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>