<!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>UMass at ImageCLEF Caption Prediction 2018 Task</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Yupeng Su</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Feifan Liu</string-name>
          <email>feifan.liu@umassmed.edu</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Max P. Rosen</string-name>
          <email>max.rosen@umassmemorial.org</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>University of Massachusetts Medical School</institution>
          ,
          <addr-line>Worcester MA 01655</addr-line>
          ,
          <country country="US">USA</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Worcester Polytechnic Institute</institution>
          ,
          <addr-line>Worcester MA 01609</addr-line>
          ,
          <country country="US">USA</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper describes the details of our participation in the image caption prediction task at CLEF 2018. We explored and implemented an encoder-decoder framework to generate caption given a medical image. For the encoder, we compared two variations of convolutional neural networks (CNN) architectures: ResNet-152 and VGG-19, and for the decoder we used the long short term memory (LSTM) recurrent neural network. The attention mechanism was also experimented on a smaller sample to evaluate its impact on the model tting and prediction performance. We submitted 4 valid runs and the best result achieved 0.18 BLEU score, which ranked second among all participant teams.</p>
      </abstract>
      <kwd-group>
        <kwd>Image Caption</kwd>
        <kwd>Encoder-Decoder</kwd>
        <kwd>LSTM</kwd>
        <kwd>Neural Network</kwd>
        <kwd>Convolutional</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>Automatically making computer understand the content of an image and o ering
reasonable description in natural language has gained more and more attentions
from the computer vision and natural language processing community. In
clinical practice, medical specialist and medical researchers usually write diagnosis
reports to record microscopic ndings from images, so automatic captioning on
medical images will bene t healthcare providers with valuable insights and
reduce their burden across the overall clinical work ow.</p>
      <p>
        Due to its importance, ImageCLEF 2018 [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] continued the medical image
captioning challenge [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] with the aim of advancing methodological development in
mapping visual information from medical images to condensed textual
descriptions. The main stream of Recent methods [2{4, 10] was combining the recurrent
neural networks (RNN) for modeling natural language, with deep convoluational
neural networks(CNN) for extracting image features. Within that framework,
RNN based natural language generation was conditioned on CNN based image
contextual features through encoder-decoder framework which was originally
proposed for neural machine translation [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. In the meantime, di erent deep
architectures were also explored, including Deep Residual Networks [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] which
created shortcuts between di erent layers to enable neural network to model the
identity mapping, and Wide Residual Networks [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] which shows that the
widening of residual networks blocks can lead to improved performance compared to
increasing their depth. More recently, Zhang et al. applied MDNet [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] on
medical image captioning, where the image model utilizes an enhanced multi-scale
feature ensemble method and the language model adopts an improved attention
mechanism, outperforming other comparative baselines. It is worth noting that
the caption in their clinical dataset was generated through a special guideline
which requires additional manual e orts.
      </p>
      <p>In participating the CLEF caption prediction task, we adopted the proven
successful Encoder-Decoder architecture of neural networks, where we investigated
two state-of-the-art image encoder variants (VGG-19 and ResNet-152)
integrated with LSTM recurrent neural networks. Most existing studies use image
encoders which were pre-trained on ImageNet, a very large dataset containing
daily images from general domain. However, this pre-trained model is not
available in medical domain. Therefore, we performed netuning during end-to-end
training of our model.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Dataset</title>
      <p>The whole training dataset of Image CLEF caption prediction contains 222,314
image-caption pairs, and the length of captions varies from 1 word to 816 words.
The average caption length is 20 words. Images are mainly from medical domain,
but some of them are generic pictures such as animals or geography pictures.
Caption itself is also noisy, e.g. some copy right or author information is also
included. The o cial test data contains 9,938 images which are used to evaluate
the system's performance.
3</p>
    </sec>
    <sec id="sec-3">
      <title>Methods</title>
      <p>In the encoder-decoder framework, the encoder extracts e ective image features,
based on which the decoder generates a sequence of textual terms for
summarizing the image's content. As image understanding is crucial for caption
prediction, we built two systems: VGG Attention Model using VGG-19 architecture
as encoders integrated with the attention mechanism, and ResNet Model using
residual networks as encoders. Those two encoders have shown promising results
on image classi cation and are expected to work well for caption prediction.
Both systems depend on LSTM model for decoding.
3.1</p>
      <sec id="sec-3-1">
        <title>Preprocessing</title>
        <p>To improve generality of model, we used random crop method to augment more
data into original dataset. As we found that only 0.28%(628 instances) of the
training data contain captions with length larger than 145, we removed these
data to reduce the sequence length required in LSTM model which can speed
up the training process without losing much data representativeness.
3.2</p>
      </sec>
      <sec id="sec-3-2">
        <title>VGG Attention Model</title>
        <p>
          We adopted the architecture from the "show,attend, and tell" [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ] as our VGG
attention model, which is one of the state-of-art models for general domain image
captioning task. It consists of a VGG-19 encoder and an attention based LSTM
decoder where the soft attention mechanism was implemented. The architecture
is illustrated in Fig. 1.
        </p>
        <p>Encoder: VGG-19 Attention mechanism can guide the LSTM decoder to
dynamically focus on speci c parts of the image when generating the next caption
term at each time step. Therefore we choose the output from the relatively lower
convolution layer of the VGG net as image feature representation, which enables
the model to attend to salient regions of the image. Speci cally, we extracted
features from the conv5 3 layer, which provides the 14 x 14 x 512 feature map
(512 is the number of feature maps). The attened 196 x 512 encoding will be
fed in the subsequent LSTM decoder.</p>
        <p>Decoder: Attention Based LSTM As shown in Fig. 1, the LSTM encoder
receives the current word embedding and a dynamic image representation at
each time step through the attention module. The attention module calculates
di erent weights for feature map from di erent image locations, so that the
LSTM encoder will know which location should be focused more for producing
the next word. The weights are based on the hidden state of the LSTM at
previous time step and the feature map extracted from the aforementioned VGG
encoder(Fig. 1).
3.3</p>
      </sec>
      <sec id="sec-3-3">
        <title>ResNet Model</title>
        <p>Another model we explored is to use ResNet(residual neural networks)
architecture in place of VGG network as image encoders. The motivation to swap VGG
with ResNet is that the latter achieved state-of-the-art results in ImageNet
classi cation tasks in general domain. It indicates that ResNet has the potential to
produce a better encoding on image features. By adding shortcut of each block,
residual network architecture also accounts for the vanishing gradients problem
when training very deep convolution neural networks.</p>
        <p>
          As shown in Fig 2, we adopted ResNet-152 encoder which directly connects
to a standard LSTM decoder. Due to the depth of the architecture, we didn't
add attention in this model as it is tricky to pick up an appropriate layer to
attend to, which we will investigate in the future work. For implementation,
we used pre-trained models' parameters to initialize ResNet-152 and performed
end-to-end netuning. Note that for both systems, the LSTM decoder doesn't
use any pre-trained model.
One of the challenges for this caption prediction task is that the caption length
varies largely, and the number of words per caption ranges from 1 to 145 even
with our preprocessing step. In last year's challenge, ISIA [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ] implemented
separate deep learning models to handle di erent lengths of captions, while the
other team PRNA [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ] developed one deep learning model to handle all of them.
It shows that a single model may work well as long as it is properly
parameterized. As the Hochreiter pointed out( [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ]), LSTM has capacity to handle the
length over 1000. In order to determine some hyper-parameters, we sampled 10
instances from the training data whose captions contains words from 140 to 145.
Using this small data, we tried to over- t our deep learning model to empirically
choose hyper-parameters by measuring its capacity of modeling this small data
with long captions. Two hyper-parameters we are interested are the hidden size
of the LSTM and size of word embedding, which plays an important role in
mapping visual context features with textual terms.
        </p>
        <p>We use the BLEU score as a metric to measure whether the model can over t
the small data properly. All the experiments are using Adam gradient descent
method, and the learning rate is set as 0.0001. As we can see from Table 1, the
capacity of the model to handle long length captions is more sensitive to hidden
size than word embedding size, i.e. when the hidden size is not large enough(256),
increasing the word embedding size doesn't help much(run1 vs. run2); when the
hidden size is increased to 512, the model can t well with embedding size of
256 or 512(run3 or run4). As expected, when embedding size is further reduced
to 128, the capacity is adversely a ected(run4 vs. run5). Based on this result,
we choose the hidden size of 512 and the word embedding size of 256 in our
systems. We also did this experiment on the attention LSTM model with VGG
encoder and similar results were observed.
We used Adam stochastic gradient descent method for model training, with
learning rate set as 0.0001, the maximum epoch set as 20, and the batch size set
as 16. All our models were trained on two Tesla M60 GPUs in an Amazon EC2
server. However, attention based model training process is extremely slow, so we
have no time to get a usable model before the challenge deadline. Therefore, our
submitted runs were based on ResNet model.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Submitted Runs</title>
      <p>We delivered totally 6 runs, and 4 of them are valid, so we only describe those
4 runs. As mentioned before, those 4 runs are all based ResNet encoder with
standard LSTM decoder with di erent epochs of training. Table 2 shows our
o cial test results.</p>
      <p>{ best results among teams: the best results among all participants for caption
prediction.
{ run1 epoch 6: the run with 6 epochs of training
{ run2 epoch 13: the run with 13 epochs of training
{ run3 epoch 13 remove UNK: unknown words (UNK) were removed from
run2
{ run4 epoch 13 remove UNK netune: same setting with run3, except for
allowing whole ResNet architecture to be netuned in the training (other runs
only netuned the top 2 layers)
We can see that run1 delivered an under- tted model obtaining the worst
performance. With the same training epochs, no di erences were found in terms of
removing UNK or not, which may be due to the pre-processing step embedded
in the evaluation script. Run4 achieved the best result of 0.18 demonstrating
fully netuning is bene cial.
CLEF image caption prediction dataset is very di erent with COCO or Flickr
10k dataset. Some captions of this dataset are extraordinary long. Fig. 3 and
Fig. 4 show two examples, one is from CLEF image caption prediction dataset,
which has ve sentences, and the other one is from COCO dataset, which only
has one sentence.</p>
      <p>The caption in Fig. 3 is very complicated, covering di erent semantics: a
summary at the beginning followed by other descriptions as well as
reasoning/inferring which can't be seen in the picture at all. In contrast, the caption
from COCO dataset(Fig. 4), it only describes what can be seen from the picture.
Thus, compared with the general domain VQA task, CLEF caption prediction is
Fig. 3. Example: image of CLEF training dataset, caption: (1)Summary of key
interactions in 'atypical' WD-repeats 6 and 7 of RACK1, illustrated with the structure
of yeast Asc1p (PDB: 3FRX). (2)RACK1 proteins are characterised by a signi cant
sequence extension between blades 6 and 7, leading to a knob-like protrusion from the
upper face of the propeller. (3)The P0 Asp in blade 7 forms a salt bridge to an Arg
at the P+4 position and this is packed against a Tyr (or in some orthologues Phe) in
the P-2 position. (4) The P0 Asp is absent in blade 6. (5)In principle, these features
together with the absence of the GH signature dipeptide on the loops between blades
5 and 6 and between blades 6 and 7 may facilitate structural transitions in this region
of the protein that are important for function.
more challenging, not to mention the additional added complexity due to di
cult medical terms. To address this, the model needs to be more intelligent with
adequate reasoning ability, which may require more complex and hierarchical
text modeling structure with support of background knowledge.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Bahdanau</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cho</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bengio</surname>
            ,
            <given-names>Y.:</given-names>
          </string-name>
          <article-title>Neural Machine Translation by Jointly Learning to Align and Translate</article-title>
          . arXiv:
          <volume>1409</volume>
          .0473 [cs, stat]. (
          <year>2014</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Donahue</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hendricks</surname>
            ,
            <given-names>L.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rohrbach</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Venugopalan</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Guadarrama</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Saenko</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Darrell</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          :
          <article-title>Long-term Recurrent Convolutional Networks for Visual Recognition and Description</article-title>
          . arXiv:
          <volume>1411</volume>
          .4389 [cs]. (
          <year>2014</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Johnson</surname>
          </string-name>
          , J.,
          <string-name>
            <surname>Karpathy</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fei-Fei</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>DenseCap: Fully Convolutional Localization Networks for Dense Captioning</article-title>
          . arXiv:
          <volume>1511</volume>
          .07571 [cs]. (
          <year>2015</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Vinyals</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Toshev</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bengio</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Erhan</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Show and Tell: A Neural Image Caption Generator</article-title>
          . arXiv:
          <volume>1411</volume>
          .4555 [cs]. (
          <year>2014</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <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>Herrera</surname>
            , A.G.S. de, Eickho ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vincent</surname>
            <given-names>Andrearczyk</given-names>
          </string-name>
          , Cid,
          <string-name>
            <given-names>Y.D.</given-names>
            ,
            <surname>Liauchuk</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            ,
            <surname>Vassili</surname>
          </string-name>
          <string-name>
            <surname>Kovalev</surname>
          </string-name>
          , Hasan,
          <string-name>
            <given-names>S.A.</given-names>
            ,
            <surname>Ling</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            ,
            <surname>Farri</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            ,
            <surname>Joey</surname>
          </string-name>
          <string-name>
            <surname>Liu</surname>
          </string-name>
          , Lungren,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Dang-Nguyen</surname>
          </string-name>
          , D.-T.,
          <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>Zhou</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lux</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gurrin</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          : Overview of ImageCLEF 2018:
          <article-title>Challenges, Datasets and Evaluation</article-title>
          ,
          <source>Proceedings of the Ninth International Conference of the CLEF Association (CLEF</source>
          <year>2018</year>
          ),
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6. Garc a Seco de Herrera,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Eickho</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Andrearczyk</surname>
          </string-name>
          ,
          <string-name>
            <surname>V.</surname>
          </string-name>
          , Muller, H.:
          <article-title>Overview of the ImageCLEF 2018 Caption Prediction tasks</article-title>
          .
          <source>In: CLEF2018 Working Notes. CEUR-WS</source>
          .org &lt;http://ceur-ws.
          <source>org&gt;</source>
          , Avignon, France (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Zhang</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xie</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xing</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>McGough</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yang</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>MDNet: A Semantically and Visually Interpretable Medical Image Diagnosis Network</article-title>
          . arXiv:
          <volume>1707</volume>
          .02485 [cs]. (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Zagoruyko</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Komodakis</surname>
          </string-name>
          , N.:
          <article-title>Wide Residual Networks</article-title>
          .
          <source>arXiv:1605</source>
          .07146 [cs]. (
          <year>2016</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>He</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhang</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ren</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sun</surname>
          </string-name>
          , J.:
          <article-title>Deep Residual Learning for Image Recognition</article-title>
          .
          <source>arXiv:1512</source>
          .03385 [cs]. (
          <year>2015</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <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>Cho</surname>
            ,
            <given-names>K.</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>
          ,
          <string-name>
            <surname>Bengio</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Show, Attend and Tell: Neural Image Caption Generation with Visual Attention</article-title>
          . arXiv:
          <volume>1502</volume>
          .03044 [cs]. (
          <year>2015</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Liang</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhu</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jiang</surname>
            ,
            <given-names>S.:</given-names>
          </string-name>
          <article-title>ISIA at the ImageCLEF 2017 Image Caption Task</article-title>
          .
          <volume>9</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Hasan</surname>
            ,
            <given-names>S.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ling</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sreenivasan</surname>
          </string-name>
          , R.:
          <source>PRNA at ImageCLEF 2017 Caption Prediction and Concept Detection Tasks. 5.</source>
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Hochreiter</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Schmidhuber</surname>
            ,
            <given-names>J.: Long</given-names>
          </string-name>
          <string-name>
            <surname>Short-Term Memory</surname>
          </string-name>
          .
          <source>Neural Comput. 9</source>
          ,
          <issue>17351780</issue>
          (
          <year>1997</year>
          ).
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>