<!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>Evaluating Poro-34B-Chat and Mistral-7B-Instruct-v0.1: LLM System Description for ELOQUENT at CLEF 2024</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Vasumathi Neralla</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Sander Bijl de Vroe</string-name>
        </contrib>
      </contrib-group>
      <abstract>
        <p>In the following discussion, we demonstrate the implementation of the multilingual Large Language Model (LLM) Poro-34B-Chat and Mistral-7B-Instruct-v0.1 across diferent tasks under the ELOQUENT test suite. Poro-34B is currently the leading LLM for Finnish and has been further fine-tuned on a collection of English instruction datasets and automatically translated Finnish instructions. In this article, we delve into the processing of user and system prompts tailored to each task, focusing on topical proficiency, robustness, and Voight-Kampf tests. Furthermore, we provide an explanation of the inference engine responsible for generation, including all relevant sampling parameters to ensure reproducibility of our results.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Large Language Models</kwd>
        <kwd>Evaluation</kwd>
        <kwd>Multilingual</kwd>
        <kwd>Low-Resource</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
    </sec>
    <sec id="sec-2">
      <title>2. Background</title>
      <p>
        2.1. Poro 34B
The base model Poro 34B uses a decoder-only architecture closely matching BLOOM [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] and FinGPT
[
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. The model uses 56 attention heads, 54 layers and a hidden dimension of 7168. As the positional
encoding method it uses AliBi [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ], as well as additional layer normalization after the input embedding
layer for more robust training.
      </p>
      <p>
        Poro 34B is pre-trained with 1T tokens. The majority of its English tokens are derived from SlimPajama
[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], while the Finnish tokens were collected from Finnish portions of ParseBank, Wikipedia and Reddit,
and the Finnish media company YLE, among other sources. The StarCoder [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] dataset provides training
tokens for code. A sequence length of 2048 as well as a batch size of 2048 are used. A decaying cosine
learning rate scheduler was employed, with a 10B token linear warmup, a maximum of 1.5e-4 and a
minimum of 1e-5 for the last 10B training tokens. Training was performed on the LUMI supercomputer
using the FinGPT [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] fork of Megatron-DeepSpeed, compatible with the cluster’s AMD MI250X-GPUs.
A 128 node configuration was chosen, matching a data parallel degree of 128. LUMI runs on fully
renewable electricity, so that the total carbon emissions for GPU usage amounted to 0 tCO2eq.
      </p>
      <p>
        At the time of publication Poro-34B was the strongest Finnish language model of its size,
outperforming FinGPT on FIN-Bench [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] after just 10% of training tokens. It also shows strong performance
on English in spite of its Finnish training, and due to its relatively large proportion of code training
tokens, exhibits favorable performance on programming tasks.
2.2. Poro-34B-Chat
The base model alone does not consistently manage to follow the various task instructions without
further training, so we evaluate the fine-tuned version of Poro 34B, Poro-34B-Chat [
        <xref ref-type="bibr" rid="ref6 ref7">6, 7</xref>
        ] (unpublished).
Poro-34B-Chat was instruction fine-tuned [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] on both Finnish and English instruction-response pairs,
using code built on the Alignment Handbook [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]. Full-parameter supervised fine-tuning (SFT) was
employed.
      </p>
      <p>
        Since Finnish is under-resourced when it comes to instruction data, a machine translation approach
was used, with the Poro 34B base model itself translating instruction datasets from English to Finnish.
The English instruction data was compiled from OASST2 [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ], the Dolly dataset [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ], and an Argilla
SFT dataset [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ].
      </p>
      <p>
        The Finnish and cross-lingual data [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] were constructed using a variety of methods. The instruction
data was obtained by automatically translating a curated set of the English instructions with Poro 34B
(alongside a number of heuristics and filtering steps). Furthermore, Poro 34B was used to generate
English-Finnish translation data and language identification data, and the collection was supplemented
with Finnish paraphrase data, see [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] for details. Combined these sources result in a data mixture of
40% English, 40% Finnish, and a further 20% cross-lingual data.
      </p>
      <sec id="sec-2-1">
        <title>2.3. Mistral-7B-Instruct-v0.1</title>
        <p>
          We also assessed Mistral-7B-Instruct-v0.1 [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ], a fine-tuned version of the Mistral-7B base model, on
the same tasks. Mistral does not publicly share the specific training data composition for either model.
However, they state that Mistral-7B-Instruct-v0.1 was fine-tuned without proprietary data, using only
instruction datasets publicly available on HuggingFace.
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Methods and Tasks</title>
      <p>To produce model responses we use an internal model service based on OpenAI compatibility. The
service utilizes vLLM (v0.2.4) as the inference engine.</p>
      <p>A large number of the sampling parameters for vLLM can be kept constant between tasks:
SamplingParams(
n=1, best_of=1, presence_penalty=0.0, frequency_penalty=0.0,
repetition_penalty=1.0, temperature=0.7, top_p=1.0,
top_k=-1, min_p=0.0, seed=None, use_beam_search=False,
length_penalty=1.0, early_stopping=False, stop=[], stop_token_ids=[],
include_stop_str_in_output=False, ignore_eos=False, max_tokens=1630,
logprobs=None, prompt_logprobs=None, skip_special_tokens=True,
spaces_between_special_tokens=True
)</p>
      <p>Then the main parameters of interest per task are the user_prompt and the the system_prompt.
Below we describe handling of these input parameters per task. Note that we choose not to participate
in the HalluciGen task.</p>
      <sec id="sec-3-1">
        <title>3.1. Topical Competence</title>
        <sec id="sec-3-1-1">
          <title>There were two steps in the Topical Competence task:</title>
        </sec>
        <sec id="sec-3-1-2">
          <title>1. Generate questions on the specified topic</title>
        </sec>
        <sec id="sec-3-1-3">
          <title>2. Generate answers for the questions generated in Step 1</title>
          <p>When generating questions (Step 1) we found that the system benefited from using both the title and
description fields. Our final user_prompt was defined as the following string:
user_prompt = “Title:” + topic_title + “∖n” + “Description: ” + topic_description</p>
        </sec>
        <sec id="sec-3-1-4">
          <title>We include an example of the task below:</title>
          <p>Step 1
system_prompt:
“Create a set of questions that can be used to assess if someone knows about the following topic:”
user_prompt:
“Title: risks and benefits of keeping a pet cat
Description: A set of questions to help decide if one should get a pet cat or not.”
model_output:
“Sure, here are some questions that could be used to assess someone’s knowledge about the risks and
benefits of keeping a pet cat: list_of_output_questions</p>
          <p>Step 2
system_prompt:
“Answer the following questions:”
user_prompt:
model_output_from_step_1</p>
        </sec>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Robustness</title>
        <p>For the robustness user_prompt we utilized the prompt provided with the entry. Since Poro-34B-chat
was trained on English, Finnish, and code tokens, we evaluated the model only for the English variants
of entries. We found that the model was able to provide sensible outputs with an empty system prompt.</p>
      </sec>
      <sec id="sec-3-3">
        <title>3.3. Voight Kampf</title>
        <p>The output of this task will serve as source material for assessing the capability to discern between text
authored by humans and text generated mechanically. About 500 words are generated based on the
given summary or topic. Again for Voight-Kampf we choose to use the provided prompt, and do not
apply a system prompt.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Conclusion</title>
      <p>We have presented here a straightforward application of Poro-34B-Chat and Mistral-7B-Instruct-v0.1 to
the tasks in the ELOQUENT test suite. Poro 34B is the state-of-the-art multilingual LLM for Finnish,
and its fine-tuned version Poro-34B-Chat was created using a mixture of English instruction datasets
and automatically translated Finnish instructions. Mistral-7B-Instruct-v0.1 provides an open-source
model for comparison. With a simple prompting approach Poro-34B-Chat is able to follow instructions
on the chosen tasks.
We would like to thank Jonathan Burdge, Kai Hakala, Mark van Heeswijk, Andrey Ivannikov, Jussi
Karlgren, Aku Rouhe, Mittul Singh and Elaine Zosa for their insightful comments.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>T.</given-names>
            <surname>Le Scao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Fan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Akiki</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Pavlick</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Ilić</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Hesslow</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Castagné</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. S.</given-names>
            <surname>Luccioni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Yvon</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Gallé</surname>
          </string-name>
          , et al.,
          <article-title>Bloom: A 176b-parameter open-access multilingual language model (</article-title>
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>R.</given-names>
            <surname>Luukkonen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Komulainen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Luoma</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Eskelinen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kanerva</surname>
          </string-name>
          , H.
          <string-name>
            <surname>-M. Kupari</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Ginter</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          <string-name>
            <surname>Laippala</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Muennighof</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Piktus</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Tazi</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Scao</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Wolf</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          <string-name>
            <surname>Suominen</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Sairanen</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Merioksa</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Heinonen</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Vahtola</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Antao</surname>
          </string-name>
          , S. Pyysalo,
          <article-title>FinGPT: Large generative models for a small language</article-title>
          , in: H.
          <string-name>
            <surname>Bouamor</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Pino</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          Bali (Eds.),
          <source>Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing</source>
          , Association for Computational Linguistics, Singapore,
          <year>2023</year>
          , pp.
          <fpage>2710</fpage>
          -
          <lpage>2726</lpage>
          . URL: https://aclanthology.org/
          <year>2023</year>
          .emnlp-main.
          <volume>164</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2023</year>
          .emnlp-main.
          <volume>164</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            O. Press,
            <given-names>N. A.</given-names>
            <surname>Smith</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <article-title>Train short, test long: Attention with linear biases enables input length extrapolation</article-title>
          ,
          <source>arXiv preprint arXiv:2108.12409</source>
          (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>D.</given-names>
            <surname>Soboleva</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Al-Khateeb</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Myers</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. R.</given-names>
            <surname>Steeves</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Hestness</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Dey</surname>
          </string-name>
          ,
          <article-title>Slimpajama: A 627b token cleaned and deduplicated version of redpajama</article-title>
          ,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>R.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. B.</given-names>
            <surname>Allal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Muennighof</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Kocetkov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Mou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Marone</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Akiki</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Chim</surname>
          </string-name>
          , et al.,
          <article-title>Starcoder: may the source be with you!</article-title>
          ,
          <source>arXiv preprint arXiv:2305.06161</source>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <surname>Silogen</surname>
          </string-name>
          , Poro 34b chat is here,
          <year>2024</year>
          . URL: https://www.silo.ai/blog/poro-34b
          <string-name>
            <surname>-</surname>
          </string-name>
          chat-is-here, accessed on May 28th
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7] LumiOpen,
          <string-name>
            <surname>Poro-</surname>
          </string-name>
          34b-chat,
          <year>2024</year>
          . URL: https://huggingface.co/LumiOpen/Poro-34B-chat, accessed on May 28th
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>L.</given-names>
            <surname>Ouyang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Almeida</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Wainwright</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Mishkin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , S. Agarwal,
          <string-name>
            <given-names>K.</given-names>
            <surname>Slama</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ray</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Schulman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Hilton</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Kelton</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Miller</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Simens</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Askell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Welinder</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P. F.</given-names>
            <surname>Christiano</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Leike</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Lowe</surname>
          </string-name>
          ,
          <article-title>Training language models to follow instructions with human feedback</article-title>
          , in: S. Koyejo,
          <string-name>
            <given-names>S.</given-names>
            <surname>Mohamed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Agarwal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Belgrave</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Cho</surname>
          </string-name>
          ,
          <string-name>
            <surname>A</surname>
          </string-name>
          . Oh (Eds.),
          <source>Advances in Neural Information Processing Systems</source>
          , volume
          <volume>35</volume>
          ,
          <string-name>
            <surname>Curran</surname>
            <given-names>Associates</given-names>
          </string-name>
          , Inc.,
          <year>2022</year>
          , pp.
          <fpage>27730</fpage>
          -
          <lpage>27744</lpage>
          . URL: https://proceedings.neurips.cc/paper_files/paper/2022/file/ b1efde53be364a73914f58805a001731-Paper-Conference.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>L.</given-names>
            <surname>Tunstall</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Beeching</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Lambert</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Rajani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Rasul</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Rush</surname>
          </string-name>
          , T. Wolf,
          <article-title>The alignment handbook</article-title>
          , https://github.com/huggingface/alignment-handbook,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>A.</given-names>
            <surname>Köpf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Kilcher</surname>
          </string-name>
          , D. von Rütte,
          <string-name>
            <given-names>S.</given-names>
            <surname>Anagnostidis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z. R.</given-names>
            <surname>Tam</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Stevens</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Barhoum</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Nguyen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Stanley</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Nagyfi</surname>
          </string-name>
          , et al.,
          <article-title>Openassistant conversations-democratizing large language model alignment</article-title>
          ,
          <source>Advances in Neural Information Processing Systems</source>
          <volume>36</volume>
          (
          <year>2024</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>M.</given-names>
            <surname>Conover</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hayes</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Mathur</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Xie</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Shah</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ghodsi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Wendell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Zaharia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Xin</surname>
          </string-name>
          ,
          <article-title>Free dolly: Introducing the world's first truly open instruction-tuned llm</article-title>
          ,
          <source>Company Blog of Databricks</source>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <article-title>Argilla, instruction-collection-</article-title>
          <string-name>
            <surname>fin</surname>
          </string-name>
          ,
          <year>2024</year>
          . URL: https://huggingface.co/datasets/argilla/10k_ prompts_ranked_mistral_large_responses, accessed on May 28th
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <article-title>LumiOpen, instruction-collection-</article-title>
          <string-name>
            <surname>fin</surname>
          </string-name>
          ,
          <year>2024</year>
          . URL: https://huggingface.co/datasets/LumiOpen/ instruction-collection-fin, accessed on May 28th
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>A. Q.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Sablayrolles</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Mensch</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Bamford</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. S.</given-names>
            <surname>Chaplot</surname>
          </string-name>
          , D. d. l. Casas,
          <string-name>
            <given-names>F.</given-names>
            <surname>Bressand</surname>
          </string-name>
          , G. Lengyel,
          <string-name>
            <given-names>G.</given-names>
            <surname>Lample</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Saulnier</surname>
          </string-name>
          , et al.,
          <source>Mistral 7b, arXiv preprint arXiv:2310.06825</source>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>