<!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>JUST at ImageCLEF 2019 Visual Question Answering in the Medical Domain</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Aisha Al-Sadi</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Bashar Talafha</string-name>
          <email>talafha@live.com</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Mahmoud Al-Ayyoub</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yaser Jararweh</string-name>
          <email>yijararwehg@just.edu.jo</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Fumie Costen</string-name>
          <email>fumie.costen@manchester.ac.uk</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Jordan University of Science and Technology</institution>
          ,
          <country country="JO">Jordan</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>University of Manchester</institution>
          ,
          <country country="UK">UK</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper describes our method for the Medical Domain Visual Question Answering (VQA-Med) Task of ImageCLEF 2019. The aim is to build a model that is able to answer questions about medical images. Our proposed model consists of sub-models, each specializing in answering a speci c type of questions. Speci cally, the sub-models we have are: \plane" model, \organ systems" model, \modality" models, and \abnormality" models. All of these models are basically image classi cation models based on pre-trained VGG16 network. We do not rely on the questions for the answers prediction since the questions on each type are repetitive. However, we do rely on them to determine the suitable model to be used for producing the answers and determine the suitable answer format. Our best model achieves 57% accuracy and 0.591 BLEU score.</p>
      </abstract>
      <kwd-group>
        <kwd>ImageCLEF 2019</kwd>
        <kwd>Visual Question Answering</kwd>
        <kwd>Medical Image Interpretation</kwd>
        <kwd>Medical Questions and Answers</kwd>
        <kwd>VGG Network</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1 Introduction</title>
      <p>With the advances in the computer vision (CV) and natural language processing
(NLP) elds, new challenging tasks emerge and one of them is Visual Question
Answering (VQA), which grabbed the attention of both research communities.
VQA is basically about answering a speci c question about a given image. Thus,
there is a need to combine CV techniques that provide an understanding of
the image's content with NLP techniques that provide an understanding of the
question and the ability to produce the answer. Obviously, the di culty level
of the problem depends on the expected answer types, whether they are yes/no
questions, multiple choice questions or open-ended questions.</p>
      <p>
        Recently, VQA has been applied to di erent speci c domains such as the
medical domain. Medical VQA poses its own set of issues/challenges that are
di erent from the ones faced in general domain VQA. Some of these challenges
are related to the processing of medical images and the di culties in handling
all kinds of images for di erent body parts and extracting regions of interest
that vary greatly for the di erent medical cases and ailments. The other set
of challenges are related to the understanding of the questions and the ability
to process very technical medical terms as well as non-medical terms used by
common users. The resources required to address all of these challenges are
massive and there are restrictions related to using them and integrating them
into a single model. Thus, the Medical VQA is still at very early stages, but it
is expected to improve over time [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
      </p>
      <p>
        This paper presents our participation in VQA-Med 2019 task [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ], which is
organized by ImageCLEF 2019 [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. This is the second installment of this task3
with the aim of answering questions about medical images. For that, we create
sub-models, where each sub-model is specialized for answering a speci c type
of questions. All our models use the pre-trained convolutional neural networks
(CNN), VGG16 [9], for visual features extractions.
      </p>
      <p>
        The rest of paper is organized as follows. Section 2 presents the most relevant
work, which includes the participants' models in the VQA-Med 2018 challenge
[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. Section 3 presents detailed analysis of the dataset, which we nd useful in
building our models. In Section 4, we present our proposed models for answering
questions of each type. Validation results for all models and nal test results are
presented in Section 5. Finally, the paper is concluded in Section 6.
2
      </p>
    </sec>
    <sec id="sec-2">
      <title>Related Works</title>
      <p>The general VQA challenge4 which is held every year starting from 2016, is
based on a large dataset of real-world images with di erent question types such
as yes/no questions, number questions, and other questions. Di erent approaches
were applied for the task and most solutions rely on deep learning techniques
that combine the use of word embedding with di erent recurrent neural
networks (RNN) for text embedding and features extraction, and CNN for visual
features extraction supplemented with advanced techniques such as attention
mechanisms.</p>
      <p>
        For the medical domain, the task is di erent as the nature of medical
images requires knowledge in the medical domain in order to understand them.
So, a special challenge is organized for it. The rst version of this competition
is VQA-Med 2018 [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. The dataset used in the 2018 version is di erent from the
one used in the 2019 version. The 2018 version consists of 2,866 medical images
and 6,413 questions answers pairs divided into training, validation, and testing
sets. Two medical experts manually checked the automatically generated
questions and answers for each image. The questions types are mixed between asking
3 The rst VQA-Med task [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] was organized by ImageCLEF 2018.
4 https://visualqa.org/index.html
about a \region" within the image, asking about what the image shows, yes/no
questions, and other question types including asking about abnormalities shown
in the image and image kind, etc. Five teams submitted their work, most of
their approaches use deep learning techniques. They use pre-trained CNN
models to extract image features such as VGG16 and ResNet [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. There are many
approaches based on the encoder-decoder architecture with di erent components
such as Long Short-Term Memory (LSTM) or Bidirectional LSTM (Bi-LSTM),
with or without attention. In addition, there are some teams that used advanced
techniques in the task such as the stacked attention networks and multimodal
compact bilinear (MCB) pooling.
      </p>
      <p>JUST team [10] used VGG16 for image features extraction. They used an
LSTM-based encoder-decoder model where they feed the question to the encoder
and then concatenate the hidden state of the encoder with the image features
to feed them to the decoder as the initial hidden states.5</p>
      <p>
        The FSST team [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] dealt with the task as a multi-label classi cation
problem. They extracted image features using VGG16 and word embedding of the
question and feed it to a Bi-LSTM network to extract question features. Then
concatenated question features and image features and fed them to a decision
tree classi er.
      </p>
      <p>TU team [11] provided two models. In the rst model, which is basically
the same architecture of [10], they used the pre-trained Inception-ResNet-v2
model to extract image features and Bi-LSTM instead of LSTM as [10]. In their
second model, they computed the attention between the image features and the
question features and concatenated it with the question features before feeding
it to a Softmax layer for prediction.</p>
      <p>
        NLM team [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] also created two models. For the rst model, they used Stacked
Attention Network (SAN) with VGG16 for image features and LSTM for
question features. As for the second model, they used Multimodal Compact Bilinear
pooling (MCB) with ResNet-50 and ResNet-152 for image features and 2-layer
LSTM question features. In SAN model, they compute the attention over the
image, then combine the image features and question features for the second
attention layer, then pass it to a Softmax layer as a classi cation problem. For
MCB model, they ne-tuned ResNet-50 and ResNet-152 on external medical
images, then they combined the image features and question features to create
a multimodal representation to predict the answer.
      </p>
      <p>
        UMass team [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] used ResNet-152 in extract image features, and a pre-trained
word embedding on Wikipedia pages, PubMed articles and Pittsburgh clinical
notes for text features. They created multiple attention maps using co-attention
mechanism between image features and text features. Then, they generated
answers using a sampling method as a classi cation task.
5 https://github.com/bashartalafha/VQA-Med
      </p>
    </sec>
    <sec id="sec-3">
      <title>Dataset Description</title>
      <p>The dataset used in VQA-Med 2019 consists of 3,200 medical images with 12,792
Question-Answer (QA) pairs as training data, 500 medical images with 2,000 QA
pairs as validation data, and 500 medical images with 500 questions as test data.
The data is equally distributed over four categories based on the question types
which are: plane category, organ category, modality category, and abnormality
category.</p>
      <p>We can determine the question category from the question words, i.e., if the
word `plane' appears in the question, then this is a plane question. While if the
words `organ' or `part' appear in the question, then this is an organ question. If
the words `normal', `abnormal', `alarm' or `wrong' appear in the question, then
this is an abnormality question. Otherwise, this is a modality question. This is
useful for test data questions since the category of the question is not given like
in the training and validation questions.
3.1</p>
      <sec id="sec-3-1">
        <title>Plane Category Data</title>
        <p>Question on planes come in one of the following formats: \in which plane",
\Which plane", \what plane", \in what plane", \what is the plane", \what
imaging plane is", and \what image plane". There are 16 planes. Figure 1 shows
main planes and their distributions in training and validation data. As evidence
in this gure, the data is unbalanced, with some planes being more frequent than
the others. In fact, this imbalance is noticeable across all categories data.
Question on organ systems come in one of the following formats: \what organ
system is", \what part of the body is", \the ct/mri/ultrasound/x-ray scan shows
what organ system", \which organ system is", \what organ system is", \what
organ is this", etc. There are ten organ systems. Figure 2 shows all organ systems
and their distribution in training and validation data.
There are eight main modality categories: XR, CT, MR, US, MA, GI, AG, and
PT. Under each of these categories, there is a number of subcategories. Each
of XR and MA has one subcategory, while each of US, AG, and PT has two
subcategories, GI has four subcategories, CT has seven subcategories, and nally
MR has 17 subcategories.</p>
        <p>The questions of modality part are more diverse, we can classify them into
four types:
{ Type 1: Questions whose answer is one of the main modality categories and
its subcategory. Examples include \what modality was used to take this
image", \how was this image taken", \what kind of image is this", etc.
{ Type 2: Yes/no questions. Examples include \is this an mri image", \was gi
contrast given to the patient", etc.
{ Type 3: Questions whose answer is one of the choices explicitly mentioned in
the question itself. Examples include \is this a contrast or noncontrast ct",
\is this a t1 weighted, t2 weighted, or air image", etc.
{ Type 4: Questions whose answer is one two or three choices that are not
explicitly mentioned in the question. Examples include \what type of contrast
did this patient have", \what is the mr weighting in this image", etc.
Table 1 shows modality questions types distribution in training and validation
data. Figure 3 shows the distribution of images of each main category from all
questions types. Note that we are unable to determine the modality in some
cases, such as \is this an mri image" with \no" as the answer. With the
variations in modality questions types and large number of subcategories for some
categories, we prepare di erent data formats in order to focus on speci c aim in
each model.
Questions of this category come in one of the following formats.
{ Type 1: Questions asking about abnormality in the image. For example,
\what is the abnormality/wrong/alarming in this image". This type
represents 97% of abnormality training questions and 95% of abnormality
validation questions.
{ Type 2: Questions with yes/no answers such as \is this image normal" Or
\is this image abnormal". This types represents 3% of abnormality training
questions and 5% of abnormality validation questions.</p>
        <p>For Type 1 questions, there are 1,461 di erent abnormalities in the 3,082 training
images, and 407 di erent abnormalities in the 477 validation images.</p>
        <p>It is worth mentioning that the dataset has wrong answers for some images
that might a ect the model's accuracy. This is expected since the data was
generated automatically. Even for non-medical people like ourselves, we are able
to detect some errors, but it needs an expert to determine all wrong answers and
correct them.
4</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Methodology</title>
      <p>Since we have di erent categories of questions, we create a special model for
each category. Then, we combine them all in one model to be used for predicting
answers. In order to use them correctly to answer a given question with a given
image, we need to detect the suitable model to answer the question on the image
and the question words. The following subsections describe the models we build
for each subcategory before describing how to combine them.
4.1</p>
      <sec id="sec-4-1">
        <title>Plane Model</title>
        <p>The questions format on this category are repetitive and all questions have the
same meaning even if they use di erent words. So, it is expected that the
questions would not contribute anything in answer predictions and only the image
can determine the plane answer. Hence, we deal with this part as an image
classi cation task. We use the pre-trained model VGG16 with the last layer (the
Softmax layer) removed and all layers (except the last four) frozen. The output
from this part is fed into two fully-connected layers with 1024 hidden nodes
followed by a Softmax layer with 16 plane classes. Figure 4 shows the plane model
architecture in details. Since the data is unbalanced, we use class weights in
order to give the classes with smaller numbers of images higher weights.
The questions formats here are also repetitive and have the same meaning. So,
we rely on the images only to get the organ system answer, i.e., as an image
classi cation task. We use the same model architecture for plane model except
that the last layer, which is the Softmax layer, has the ten organ systems classes.
4.3</p>
      </sec>
      <sec id="sec-4-2">
        <title>Modality Models</title>
        <p>As mentioned in the modality data description in the dataset section, this
category has di erent variations in question types and di erent main categories and
subcategories. For this part, we create many models capable of answering every
question type more accurately compared with what a general model can achieve.
Firstly, we explain the models we create, and, later, we explain how to combine
them.</p>
        <p>{ M1, the general model, for classifying image modality into eight main
categories (XR, CT, MR, US, MA, GI, AG, and PT).
{ M2 model for distinguishing MR images from CT images.
{ M3 model for distinguishing contrast from non-contrast CT images.
{ M4 model for distinguishing contrast from non-contrast MR images.
{ M5 model for classifying CT contrast types (GI/IV/GI and IV).
{ M6 model for classifying MR weighting types (T1/T2/Flair).
{ M7 model for classifying all CT subcategories.
{ M8 model for classifying all MR subcategories.
{ M9 model for classifying all GI subcategories.
{ M10 model for classifying all ultrasound subcategories.</p>
        <p>We did not create special models for the PT and AG categories as the data
for building them are insu cient. The available data for the AG category is 81
training images and 18 validation images. Moreover, 96% of the training images
belong to only one class, and all the validation images are only for that class as
well. The same applies for the PT category. The available data consists of 21
training images and a single validation image. About 85% of the training images
belong to only one class, and the validation image for that class is zero. So, if the
predicted main modality category is AG or PT the subcategory answer will be
the dominant class directly which are AN-Angiogram for AG and NM-Nuclear
Medicine for PT.
4.4</p>
      </sec>
      <sec id="sec-4-3">
        <title>Abnormality Models</title>
        <p>For abnormality Type 2 questions, which ask if the image normal or abnormal,
we create a special image classi cation model for that purpose with the same
architecture of the plane model except that that the Softmax layer predicts
normal/abnormal labels. While for Type 1 questions, which ask about the
abnormality in the image, we experiment with di erent models since the task is
quite challenging due to the given data being too small for the very large
number of di erent abnormalities answers. The following are the main four methods
with which we experiment.</p>
        <p>{ Method 1: We use an encoder-decoder architecture that takes an image as
input and produces an answer as the output. The questions have the same
meaning despite having di erent formats, hence, they are expected to not
play an important role in producing the answers. We feed the image into an
LSTM and use the hidden states of that LSTM as initial states of another
LSTM for the answer sequence. We then add the encoder output and the
decoder output, and pass the results into a dense layer followed by a Softmax
layer.
{ Method 2: In this method, we treat the problem as an image classi cation
task using the same architecture of our previous models except that the
Softmax layer has all unique abnormalities in the training data, which are
1,461 di erent abnormalities.
{ Method 3: Firstly, we predict plane and organ classes of the test image. We
then calculate the cosine similarity between the VGG16 features of the test
image and all training images that have the same plane and organ of the test
image. Finally, we get the most similar image and output its abnormality as
the answer.
{ Method 4: This is the same as Method 3, except that we take the two most
similar images, and output the abnormality answer of the image which has
the same abnormality question as that of the test image. If none of the two
most similar image has the same question format, then we output the most
similar image answer as in Method 3.</p>
        <p>Algorithm 1 shows the steps taken to determine the required model for answer
prediction. There are a lot of details that are not presented in the owchart for
simplicity, such as in modality questions Types 2-4, where di erent question
formats are asking about speci c things to determine the required model.
5</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>Evaluation and Results</title>
      <p>
        In this section, we report the evaluation results of each of the previous models
on the validation data separately. Then, we report our o cial results in the
VQA-Med 2019 challenge. The evaluation metrics are accuracy and BLEU score
[
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. For all models, we conduct several experiments for di erent optimizers and
learning rates and report the best results. Table 2 shows the evaluation results
for the validation data for each model belonging to the modality category.
      </p>
      <p>Note that the accuracy of M10 is misleading since it predicts the dominant
class all the time. It is worth mentiong that the overall modality validation
accuracy, which is 75.4%, is not the average accuracy of all models. It is the
accuracy of predicting modality validation questions using these models.</p>
      <p>For the abnormality models, the accuracy of normal/abnormal model is
77.7%. While for other abnormality questions, Table 3 shows the validation
accuracy and BLEU score for the di erent four methods. So, the best abnormality
validation accuracy is 17.59% resulting from using Normal/Abnormal Model and
Method 2 Abnormality Model.</p>
      <p>Algorithm 1: Prediction Steps</p>
      <p>Input: Image i and Question q
if `plane' word in q then</p>
      <p>Predict plane using Plane Model
else if `organ' or `part' words in q then</p>
      <p>Predict organ plane using Organ Model
else if `normal', `abnormal', `alarm', or `wrong' words in q then
if q starts with \is this", \is there", \does this", \is the" or \are there" then</p>
      <p>Predict using Normal/Abnormal Model and answer yes/no based on that
else
if Method-1 then</p>
      <p>Predict using Abnormality Image Encoder-Decoder Model.
else if Method-2 then</p>
      <p>Predict using Abnormality Image Classi cation Model.
else if Method-3 then</p>
      <p>Predict using Abnormality Image Similarity Model.
else</p>
      <p>Predict using Abnormality image Similarity with Question Format Model.
end if
end if
else
if Modality Type-1 Question then</p>
      <p>Predict main modality category
Predict subcategory model based on the predicted main category from models
M7-M10
else</p>
      <p>Predict Answer using models M2-M6 based on what the question asks about
end if
end if
Output: Answer</p>
      <p>For the whole model, here are the results. For plane questions, the validation
accuracy is 76.2%, and, for organ questions, it is 74.2%. While the nal modality
model accuracy is 75.4% and the best abnormality model accuracy is 17.59%.
So, the nal validation accuracy is 60.85%.</p>
      <p>For the VQA-Med 2019 challenge, we submit four runs of test data
predictions. The four runs have the same predictions of plane, organ, and modality
questions and the di erence between them is only in the abnormality part. In
each run, we use di erent method (Methods 1-4 as described in the abnormality
model section). Table 4 shows our submissions results, Run-2 which deals with
abnormality questions as an image classi cation has the best accuracy score and
best BLEU score among our submissions.</p>
      <p>After the competition was nished and the test answers were published
publicly, we compared our predicted answers with the correct answers. We found
that the plane part has accuracy 72.8%, organ systems 70.4%, modality part
64%, and abnormality part 8%. Moreover, we discovered that, for the
abnormality part, we submitted our predicted answers without stop words. So, some of
our correct answers were considered as false ones. Correcting this part increase
the accuracy of this part to 18.4%. Another technicality that caused some of the
correct answers produced by our systems to be considered false is the fact that
some modality questions have single correct answers in the testing set where
they should have multiple correct answers accounting for the di erent formats
in which the correct answer may appear. For example, if the actual answer is \ct
w contrast iv", then, our system's predicted answer \ct with iv contrast" should
be considered correct. So, by taking into consideration the two previous notes,
the actual overall accuracy of our model reaches 57%.</p>
    </sec>
    <sec id="sec-6">
      <title>Conclusion</title>
      <p>In this paper, we described our participation in the ImageCLEF VQA-Med
2019 task. The proposed model consists of sub-models based on the pre-trained
VGG16 model. Our model's overall accuracy is 57% with 0.591 BLEU score.
Accuracy of the plane, organ, and modality models are good (ranging between
65% and 72%), however, the abnormality model's accuracy is rather low (18%),
due to the di culty of the task especially with the small dataset available. In
the future, we plan on seeking the help of a medical expert in order to correct
wrong answers and collect new data for the abnormality part.
9. Simonyan, K., Zisserman, A.: Very deep convolutional networks for large-scale
image recognition. arXiv preprint arXiv:1409.1556 (2014)
10. Talafha, B., Al-Ayyoub, M.: Just at vqa-med: A vgg-seq2seq model. In: Working
Notes of CLEF 2018 - Conference and Labs of the Evaluation Forum, Avignon,
France, September 10-14, 2018. (2018)
11. Zhou, Y., Kang, X., Ren, F.: Employing inception-resnet-v2 and bi-lstm for medical
domain visual question answering. In: Working Notes of CLEF 2018 - Conference
and Labs of the Evaluation Forum, Avignon, France, September 10-14, 2018. (2018)</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Abacha</surname>
            ,
            <given-names>A.B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Gayen</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lau</surname>
            ,
            <given-names>J.J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rajaraman</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Demner-Fushman</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Nlm at imageclef 2018 visual question answering in the medical domain</article-title>
          .
          <source>In: Working Notes of CLEF 2018 - Conference and Labs of the Evaluation Forum</source>
          , Avignon, France,
          <source>September 10-14</source>
          ,
          <year>2018</year>
          . (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Allaouzi</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Benamrou</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Benamrou</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ahmed</surname>
            ,
            <given-names>M.B.</given-names>
          </string-name>
          :
          <article-title>Deep neural networks and decision tree classi er for visual question answering in the medical domain</article-title>
          .
          <source>In: Working Notes of CLEF 2018 - Conference and Labs of the Evaluation Forum</source>
          , Avignon, France,
          <source>September 10-14</source>
          ,
          <year>2018</year>
          . (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <given-names>Ben</given-names>
            <surname>Abacha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Hasan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.A.</given-names>
            ,
            <surname>Datla</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.V.</given-names>
            ,
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Demner-Fushman</surname>
          </string-name>
          ,
          <string-name>
            <surname>D.</surname>
          </string-name>
          , Muller, H.:
          <article-title>Vqa-med: Overview of the medical visual question answering task at imageclef 2019</article-title>
          .
          <source>In: CLEF 2019 Working Notes. CEUR Workshop Proceedings</source>
          , CEURWS.org &lt;http://ceur-ws.
          <source>org&gt;</source>
          , Lugano,
          <source>Switzerland (September 9-12</source>
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <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>Farri</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lungren</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          , Muller, H.:
          <article-title>Overview of the ImageCLEF 2018 medical domain visual question answering task (September 10-14</article-title>
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <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>In: Proceedings of the IEEE conference on computer vision and pattern recognition</source>
          . pp.
          <volume>770</volume>
          {
          <issue>778</issue>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Ionescu</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          , Muller, H.,
          <string-name>
            <surname>Peteri</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cid</surname>
            ,
            <given-names>Y.D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liauchuk</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kovalev</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Klimuk</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tarasau</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Abacha</surname>
            ,
            <given-names>A.B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hasan</surname>
            ,
            <given-names>S.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Datla</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Demner-Fushman</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dang-Nguyen</surname>
            ,
            <given-names>D.T.</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>Tran</surname>
            ,
            <given-names>M.T.</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>
          ,
          <string-name>
            <surname>Pelka</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Friedrich</surname>
            ,
            <given-names>C.M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>de Herrera</surname>
            ,
            <given-names>A.G.S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Garcia</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kavallieratou</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>del Blanco</surname>
            ,
            <given-names>C.R.</given-names>
          </string-name>
          , Rodr guez, C.C.,
          <string-name>
            <surname>Vasillopoulos</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Karampidis</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chamberlain</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Clark</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Campello</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>ImageCLEF 2019: Multimedia retrieval in medicine, lifelogging, security and nature</article-title>
          . In:
          <article-title>Experimental IR Meets Multilinguality, Multimodality, and Interaction</article-title>
          .
          <source>Proceedings of the 10th International Conference of the CLEF Association (CLEF</source>
          <year>2019</year>
          ),
          <source>LNCS Lecture Notes in Computer Science</source>
          , Springer, Lugano,
          <source>Switzerland (September 9-12</source>
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Papineni</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Roukos</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ward</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhu</surname>
          </string-name>
          , W.J.:
          <article-title>Bleu: a method for automatic evaluation of machine translation</article-title>
          .
          <source>In: Proceedings of the 40th annual meeting on association for computational linguistics</source>
          . pp.
          <volume>311</volume>
          {
          <fpage>318</fpage>
          .
          <article-title>Association for Computational Linguistics (</article-title>
          <year>2002</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Peng</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosen</surname>
            ,
            <given-names>M.P.</given-names>
          </string-name>
          :
          <article-title>Umass at imageclef medical visual question answering (med-vqa) 2018 task</article-title>
          . In: Working Notes of CLEF 2018 -
          <article-title>Conference and Labs of the Evaluation Forum</article-title>
          , Avignon, France,
          <source>September 10-14</source>
          ,
          <year>2018</year>
          . (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>