<!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>VisionQAries at MEDIQA-MAGIC 2024: Small Vision Language Models for Dermatological Diagnosis</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Patrycja Cieplicka</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Julia Kłos</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Maciej Morawski</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Independent Researcher</institution>
          ,
          <addr-line>Warsaw</addr-line>
          ,
          <country country="PL">Poland</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>In this paper, we present our solution for the ImageCLEF 2024 Challenge MEDIQA-MAGIC task, which addresses the problem of Multimodal and Generative Telemedicine (MAGIC) in dermatology. We report the results of directly prompting existing small-scale multimodal models (moondream2 and TinyLLaVA) and evaluate the impact of fine-tuning these models with domain-specific knowledge. The top-performing model, based on the Moondream model and fine-tuned with domain-specific knowledge, achieved a  score of 8.629. Our findings highlight the efectiveness of these approaches in improving model performance for dermatological applications.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;small vision language models</kwd>
        <kwd>image-text-to-text</kwd>
        <kwd>multimodal</kwd>
        <kwd>dermatological diagnosis</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
    </sec>
    <sec id="sec-2">
      <title>2. Related work</title>
      <p>In the last years, we have witnessed enormous progress in artificial intelligence (AI) mainly in the field
of natural language processing (NLP) and computer vision (CV).</p>
      <p>
        In 2017 Ashish et al. [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] presented Transformer architecture, encoder-decoder model, a key element of
which is a self-attention mechanism that helps the model focus on more important parts of the sequence,
giving more weight to specific words based on their relevance to the task. As the computational
capabilities of GPU (Graphics Processing Unit) increased those two aspects have been crucial in the
evolution of Large Language Models (LLMs). One of the initial LLM models is BERT (Bidirectional
Encoder Representations from Transformers) was introduced in 2019 [3]. It has achieved state-of-the-art
results in numerous NLP benchmarks and tasks. The era of even larger LLMs began in 2020, introducing
models like GPT-3 provided by OpenAI [4] that was incredible good at generating human text. Today
open-source LLMs such as LLaMA [5], Llama 2 [6], Vicuna [7], and Mistral 7B [8] are also available.
      </p>
      <p>Transformer models have found also numerous valuable applications in the field of computer vision,
where so far mainly architectures based on convolutional neural networks have been used. Vision
Transformer architecture (ViT) was introduced [9] that treats an image as a sequence of patches and
processes these patches using self-attention, allowing the model to capture long-range dependencies and
global context. It excellent results compared to state-of-the-art convolutional networks while requiring
substantially fewer computational resources to train. In 2021 DALL-E [10] and Stable Difusion [ 11]
became state-of-the-art text-to-image generation models. CLIP (Contrastive Language-Image
Pretraining) [12] model which eficiently learns visual concepts from natural language supervision and can
act as a visual encoder and SigLip [13] model, compared to CLIP uses a simpler but computationally
cheaper loss function, were also introduced.</p>
      <p>In real-world cases, we analyze data from many diferent sources, so there has been increased interest
in visual language models (VLMs). They combine visual and textual information to understand and
generate content and are good choices for downstream tasks such as Visual Question Answering (VQA),
image captioning as well as medical report generation. Most of the recent VLMs architectures consist
of three components 1) a visual representation backbone, 2) a vision-language projector, and 3) a
language model [14]. In this approach, a (pre-trained) visual backbone is used to map an input image to
the sequence of patch features that are then projected individually into the embedding space of the
language model. To better align LMMs with human preferences, recent works, such as LLaVA [15]
and InstructBLIP [16], propose fine-tuning VLMs with visual instruction tuning data, which greatly
enhances models’ zero-shot capabilities.</p>
      <p>To adjust VLMs for medical purposes many approaches were presented [17] For example LLaVa-Med
model [18] authors proposed a novel curriculum learning method for adapting LLaVA to the biomedical
domain using their self-generated biomedical multi-modal instruction-following dataset. Another
existing solution is Visual Med-Alpaca [19], a system that connects multiple image captioning models
with an LLM, using a classifier to determine if or which biomedical captioning model is responsible for
the image. Many of the medical VLM’s have focused on radiology images - RaDialog [20] is a novel
approach to integrating advanced vision-language models for the generation, interactive modification,
and analysis of radiology reports.</p>
      <p>
        However, we need to consider the computation bottleneck usually introduced by LLMs, which are
one of the core components of recent VLM architectures. Recent research shows that small-scale LLMs
such as Phi-2 [21], TinyLlama [
        <xref ref-type="bibr" rid="ref3">22</xref>
        ] and StableLM2 [
        <xref ref-type="bibr" rid="ref4">23</xref>
        ] have reached impressive performances while
maintaining reasonable compute budgets. Existing small vision language models such as TinyLLaVA
[
        <xref ref-type="bibr" rid="ref5">24</xref>
        ] or moondream2 [
        <xref ref-type="bibr" rid="ref6">25</xref>
        ] show promising results.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Proposed solution</title>
      <p>Our objective was to evaluate the eficacy of existing multimodal solutions within the provided use
case. Given our limited access to extensive computational infrastructure, we elected to concentrate on
small-scale Large Multimodal Models (LMMs), specifically Moondream 2 and TinyLLaVA. These models
can be successfully run and fine-tuned on a private computer, making them ideal candidates for our
research. Fine-tuning was made possible by access to the training dataset provided by the challenge
organisers.</p>
      <sec id="sec-3-1">
        <title>3.1. Dataset</title>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Models</title>
        <p>
          3.2.1. moondream 2
The dataset provided by the challenge’s organizers consisted of 270 train and 43 validation clinical
dermatology textual queries with an associated image, as well as the answers to the queries (after
downloading from Reddit) [
          <xref ref-type="bibr" rid="ref7">26</xref>
          ]. Finally, the test split comprised 78 clinical dermatology textual queries
with an associated image.
        </p>
        <p>
          Moondream 2 is an open-source vision-language model [
          <xref ref-type="bibr" rid="ref6">25</xref>
          ]. Despite its modest size of 1.86 billion
parameters, which is relatively small considering that most efective models typically start at 7 billion
parameters, it is specifically designed for eficient operation on devices with limited computational
resources, such as Raspberry Pi, edge devices, or mobile phones. Like conventional vision-language
models, moondream 2 interprets visual data to generate textual responses based on the provided
information. It has demonstrated utility in various applications, including security and retail.
        </p>
        <p>
          Moondream 2 leverages weights derived from SigLIP and Phi-1.5. Phi-1.5 is a compact language
model with 1.3 billion parameters and a transformer-based architecture, trained on the LLAVA training
dataset. SigLIP (Sigmoid Loss for Language Image Pre-Training) is a method that facilitates learning by
sequentially analyzing images and their captions, enhancing speed and eficacy, especially when
handling large datasets. Similar to the CLIP (Contrastive Language-Image Pre-training) model, Moondream
2 diferentiates itself by substituting the softmax loss used in CLIP with a simple pairwise sigmoid loss.
This alteration ensures improved performance by focusing exclusively on image-text pairs, eliminating
the necessity for a global view of all pairwise data within a batch, thereby increasing the eficiency and
speed of the training process.
3.2.2. TinyLlava
TinyLLaVA presents a novel framework that integrates smaller-scale Large Language Models (LLMs)
with compact vision encoders through an intermediate connector [
          <xref ref-type="bibr" rid="ref5">24</xref>
          ]. This framework employs models
such as TinyLlama, StableLM-2, and Phi-2, in combination with vision encoders like CLIP and SigLIP.
The connector, a two-layer Multi-Layer Perceptron (MLP) with GELU activation, facilitates efective
communication between the vision encoders and the small-scale LLMs. This architecture yields a
resource-eficient multimodal system without compromising performance quality. The TinyLLaVA
framework is inspired by the design principles of LLaVA but provides a generalized implementation.
        </p>
        <p>The tiny-llava-v1-hf model has undergone pretraining on two datasets: the LLaVA dataset and the
ShareGPT4V dataset. The pretraining process involved a blend of images and annotations from the
following subsets: the 558K LAION-CC-SBU subset, the SAM dataset, and the COCO dataset. The model
configuration used in our solution includes TinyLlama/TinyLlama-1.1B-Chat-v1.0 integrated with a
CLIP vision encoder.</p>
      </sec>
      <sec id="sec-3-3">
        <title>3.3. Experimental settings</title>
        <p>
          We initiated our investigation by directly prompting the specified models, acknowledging their limited
subject-related knowledge. After testing several potential prompts, we narrowed our focus to the
two prompts detailed in Table 1 for subsequent experiments. Evaluation metrics calculated during
experiments ( and  ) were the same as used in the challenge [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ].
        </p>
        <p>Utilizing evaluation metrics, we observed comparable results, with moondream 2 slightly
outperforming TinyLLaVA in terms of . Given the encouraging performance of these small-scale
models, we proceeded to fine-tune Moondream 2 using a train dataset. The fine-tuning process involved
extending the initial queries with the provided prompt templates and experimenting with diferent
prompting strategies. The images in the dataset were augmented through a series of transformations,
including rotation, horizontal flipping, and colour jitter.</p>
        <p>Additionally, we varied the number of epochs for fine-tuning, carefully considering the dataset size
to avoid overfitting. This approach optimized model performance and enhanced the model’s awareness
of dermatology-specific knowledge, making it more proficient in the domain.
USER: &lt;IMAGE&gt; This is additional information about the dermatology issue on the image: &lt;QUERY&gt;
What dermatological disease is on the image and how can it be treated?
USER &lt;IMAGE&gt; Patient wants to find out what dermatological disease he sufers from. Considering
patient additional description: &lt;QUERY&gt; Answer two questions: 1. What dermatological disease is on the
image? 2. How can it be treated?</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Discussion of the results</title>
      <p>Table 2 presents the results of all submitted runs on a test set, sorted in descending order of their
 score. The top-performing model uses Moondream 2 architecture, prompt number
1, and is fine-tuned for 10 epochs. The next three models, fined-tuned for fewer epochs, achieve a
significant drop in performance compared to the top-performing model. The remaining four models,
which do not use fine-tuning, achieve lower  scores, ranging from 1.614 to 1.404.</p>
      <p>The provided results confirm that fine-tuning is an important factor in achieving high 
scores. The top four submissions, which are all run on fine-tuned Moondream 2 models, outperform the
remaining four submissions that are run by directly prompting Moondream 2 and TinyLLaVA models.
Additionally, the number of epochs used for fine-tuning also appears to have a significant impact on
performance. The top-performing model is fine-tuned for the highest number of epochs (10 epochs)
and the  score achieved by it is almost 6 times higher than for the same model without
ifne-tuning. However, we are aware that there is still much room for improvement.</p>
      <p>The results do not show a clear pattern in terms of the impact on the performance of prepared prompt
templates. Models when prompted directly without fine-tuning achieved slightly higher results with
prompt number 2. However, when the Moondream 2 model was fine-tuned, using prompt number 1
resulted in a significantly higher  score.</p>
      <p>During the qualitative analysis of the top-performing model, over-fitting was observed. Ten out
of the seventy-eight answers generated by this model on the test set, presented partially in Table 3,
are highly repetitive (identical or almost identical). These answers are almost the same as one of the
answers from the train set (also shown partially in Table 3).</p>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusions</title>
      <p>In conclusion, it was verified that small VLMs can be efectively applied to solve the VQA task in the
dermatological domain. The results suggest that fine-tuning small-scale VLMs is an important factor in
achieving a high  score. This process enhances the model’s awareness of
dermatologyspecific knowledge, making the models more proficient in this domain. Utilizing subject-domain
knowledge may significantly increase the accuracy of results. However, it can also cause overfitting,
potentially leading to the generation of misleading, repetitive answers that may not be relevant to the
current context.</p>
      <p>Future directions for improvement could include exploring other small-scale multimodal models,
refining prompts used for current models, or using more advanced fine-tuning techniques. Another
direction of experiments could be exploring large-scale VLMs. Nevertheless, we need to consider that
deployment of these models on edge devices could be impossible. Furthermore, while the models
show promise in generating relevant responses, clinical validation of models’ outputs to ensure their</p>
      <p>It is a case of eczema due to dry skin (xerosis). [...] Use topical steroid cream twice
daily for 2-4 weeks and oral antihistamines if needed.</p>
      <p>It is a case of eczema due to dry skin (xerosis). [...] Use topical steroid cream twice
daily for 2-4 weeks and oral antihistamines if needed.</p>
      <p>It is a case of eczema due to dry skin (xerosis). [...] Use topical steroid cream twice
daily for 2-4 weeks and oral antihistamines if needed.
t is a case of eczema due to dry skin (xerosis). [...] Use topical steroid cream twice
daily for 2-4 weeks and oral antihistamines if needed.</p>
      <p>It is a case of dermatitis due to dry skin (xerosis). [...] Use topical steroid cream twice
daily for 2-4 weeks and oral antihistamines if needed.</p>
      <p>Most probably it is a case of eczema due to dry skin (xerosis). [...] Use topical steroid
cream twice daily for 2-4 weeks and oral antihistamines if needed.</p>
      <p>It is a case of eczema due to dry skin (xerosis). [...] Use topical steroid cream twice
daily for 2-4 weeks and oral antihistamines if needed.</p>
      <p>It is a case of eczema due to dry skin (xerosis). [...] Use topical steroid cream twice
daily for 2-4 weeks and oral antihistamines if needed.</p>
      <p>It is a case of eczema due to dry skin (xerosis). [...] Use topical steroid cream twice
daily for 2-4 weeks and oral antihistamines if needed.</p>
      <p>It is a case of eczema due to dry skin (xerosis). [...] Use topical steroid cream twice
daily for 2-4 weeks and oral antihistamines if needed.</p>
      <p>It is a case of eczema due to dry skin (xerosis), contact, allergy, or atopic eczema. [...]
Use topical steroid cream twice daily for 2-4 weeks and oral antihistamines if needed.</p>
      <p>[...] as a possible diagnosis.
alignment with clinical guidelines and standards is essential. Collaboration with dermatology experts
and clinicians could be crucial in real-world scenarios.</p>
      <p>It is also worth mentioning that while these models can provide support during telemedicine
consultations or prescreening, they should not fully substitute an appointment with a specialist.
Attention is All you Need, in: Advances in Neural Information Processing Systems, volume 30,
Curran Associates, Inc., 2017.
[3] J. Devlin, M.-W. Chang, K. Lee, K. Toutanova, BERT: Pre-training of Deep Bidirectional
Transformers for Language Understanding, 2019. arXiv:1810.04805.
[4] T. Brown, B. Mann, N. Ryder, M. Subbiah, J. Kaplan, P. Dhariwal, A. Neelakantan, P. Shyam,
G. Sastry, A. Askell, S. Agarwal, A. Herbert-Voss, G. Krueger, T. Henighan, R. Child, A. Ramesh,
D. Ziegler, J. Wu, C. Winter, D. Amodei, Language Models are Few-Shot Learners, in: NIPS ’20:
Proceedings of the 34th International Conference on Neural Information Processing Systems,
Curran Associates, Inc., 2020, p. 1877–1901.
[5] H. Touvron, T. Lavril, G. Izacard, X. Martinet, M.-A. Lachaux, T. Lacroix, B. Rozière, N. Goyal,
E. Hambro, F. Azhar, A. Rodriguez, A. Joulin, E. Grave, G. Lample, Llama: Open and eficient
foundation language models, ArXiv abs/2302.13971 (2023).
[6] H. Touvron, L. Martin, K. Stone, P. Albert, A. Almahairi, Y. Babaei, N. Bashlykov, S. Batra, P.
Bhargava, S. Bhosale, et al., Llama 2: Open foundation and fine-tuned chat models, arXiv preprint
arXiv:2307.09288 (2023).
[7] W.-L. Chiang, Z. Li, Z. Lin, Y. Sheng, Z. Wu, H. Zhang, L. Zheng, S. Zhuang, Y. Zhuang, J. E.</p>
      <p>Gonzalez, I. Stoica, E. P. Xing, Vicuna: An open-source chatbot impressing gpt-4 with 90%* chatgpt
quality, 2023. URL: https://lmsys.org/blog/2023-03-30-vicuna/.
[8] A. Q. Jiang, A. Sablayrolles, A. Mensch, C. Bamford, D. S. Chaplot, D. d. l. Casas, F. Bressand,</p>
      <p>G. Lengyel, G. Lample, L. Saulnier, et al., Mistral 7b, arXiv preprint arXiv:2310.06825 (2023).
[9] A. Dosovitskiy, L. Beyer, A. Kolesnikov, D. Weissenborn, X. Zhai, T. Unterthiner, M. Dehghani,
M. Minderer, G. Heigold, S. Gelly, J. Uszkoreit, N. Houlsby, An image is worth 16x16 words:
Transformers for image recognition at scale, ArXiv abs/2010.11929 (2020).
[10] A. Ramesh, M. Pavlov, G. Goh, S. Gray, C. Voss, A. Radford, M. Chen, I. Sutskever, Zero-shot
text-to-image generation, in: Proceedings of the 38th International Conference on Machine
Learning, volume 139 of Proceedings of Machine Learning Research, PMLR, 2021, pp. 8821–8831.
[11] R. Rombach, A. Blattmann, D. Lorenz, P. Esser, B. Ommer, High-resolution image synthesis with
latent difusion models, 2021. arXiv:2112.10752.
[12] A. Radford, J. W. Kim, C. Hallacy, A. Ramesh, G. Goh, S. Agarwal, G. Sastry, A. Askell, P. Mishkin,
J. Clark, et al., Learning transferable visual models from natural language supervision, in:
International conference on machine learning, PMLR, 2021, pp. 8748–8763.
[13] X. Zhai, B. Mustafa, A. Kolesnikov, L. Beyer, Sigmoid loss for language image pre-training, in:</p>
      <p>Proceedings of the IEEE/CVF International Conference on Computer Vision, 2023, pp. 11975–11986.
[14] S. Karamcheti, S. Nair, A. Balakrishna, P. Liang, T. Kollar, D. Sadigh, Prismatic vlms: Investigating
the design space of visually-conditioned language models, arXiv preprint arXiv:2402.07865 (2024).
[15] H. Liu, C. Li, Y. Li, B. Li, Y. Zhang, S. Shen, Y. J. Lee, Llava-next: Improved reasoning, ocr, and
world knowledge, 2024. URL: https://llava-vl.github.io/blog/2024-01-30-llava-next/.
[16] W. Dai, J. Li, D. Li, A. M. H. Tiong, J. Zhao, W. Wang, B. Li, P. N. Fung, S. Hoi, Instructblip: Towards
general-purpose vision-language models with instruction tuning, Advances in Neural Information
Processing Systems 36 (2024).
[17] I. Hartsock, G. Rasool, Vision-language models for medical report generation and visual question
answering: A review, arXiv preprint arXiv:2403.02469 (2024).
[18] C. Li, C. Wong, S. Zhang, N. Usuyama, H. Liu, J. Yang, T. Naumann, H. Poon, J. Gao, Llava-med:
Training a large language-and-vision assistant for biomedicine in one day, Advances in Neural
Information Processing Systems 36 (2024).
[19] C. Shu, B. Chen, F. Liu, Z. Fu, E. Shareghi, N. Collier, Visual med-alpaca: A parameter-eficient
biomedical llm with visual capabilities, 2023.
[20] C. Pellegrini, E. Özsoy, B. Busam, N. Navab, M. Keicher, Radialog: A large vision-language model
for radiology report generation and conversational assistance, arXiv preprint arXiv:2311.18681
(2023).
[21] M. Javaheripi, S. Bubeck, M. Abdin, J. Aneja, S. Bubeck, C. C. T. Mendes, W. Chen, A. Del Giorno,
R. Eldan, S. Gopi, et al., Phi-2: The surprising power of small language models, Microsoft Research</p>
    </sec>
    <sec id="sec-6">
      <title>A. Online Resources</title>
      <p>The source code of our approach is available via GitHub.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>W.</given-names>
            <surname>Yim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. Ben</given-names>
            <surname>Abacha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Fu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Yetisgen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Xia</surname>
          </string-name>
          ,
          <article-title>Overview of the mediqa-magic task at imageclef 2024: Multimodal and generative telemedicine in dermatology</article-title>
          ,
          <source>in: CLEF 2024 Working Notes, CEUR Workshop Proceedings</source>
          , CEUR-WS.org, Grenoble, France,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>A.</given-names>
            <surname>Vaswani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Shazeer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Parmar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Uszkoreit</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. N.</given-names>
            <surname>Gomez</surname>
          </string-name>
          , L. u. Kaiser,
          <string-name>
            <given-names>I. Polosukhin</given-names>
            ,
            <surname>Blog</surname>
          </string-name>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>P.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , G. Zeng,
          <string-name>
            <given-names>T.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Lu</surname>
          </string-name>
          ,
          <string-name>
            <surname>Tinyllama:</surname>
          </string-name>
          <article-title>An open-source small language model</article-title>
          ,
          <source>arXiv preprint arXiv:2401.02385</source>
          (
          <year>2024</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>M.</given-names>
            <surname>Bellagente</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Tow</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Mahan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Phung</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Zhuravinskyi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Adithyan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Baicoianu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Brooks</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Cooper</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Datta</surname>
          </string-name>
          , et al.,
          <source>Stable lm 2 1.6 b technical report, arXiv preprint arXiv:2402.17834</source>
          (
          <year>2024</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>B.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Hu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Weng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Jia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Luo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <article-title>Tinyllava: A framework of small-scale large multimodal models</article-title>
          ,
          <year>2024</year>
          . arXiv:
          <volume>2402</volume>
          .
          <fpage>14289</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [25] vikhyat, Moondream, https://github.com/vikhyat/moondream,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>W.</given-names>
            <surname>Yim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Fu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. Ben</given-names>
            <surname>Abacha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Yetisgen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Xia</surname>
          </string-name>
          ,
          <article-title>Dermavqa: A multilingual visual question answering dataset for dermatology</article-title>
          ,
          <source>CoRR</source>
          (
          <year>2024</year>
          ).
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>