<!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>Hindi-Odia Machine Translation System</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Rakesh Chandra Balabantaray</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Nayan Ranjan Paul</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Mihir Raj</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Computer Science and Engineering</institution>
          ,
          <addr-line>IIIT Bhubaneswar, Gothapatna, Bhubaneswar, 751003, Odisha</addr-line>
          ,
          <country country="IN">India</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Computer Science and Engineering, Silicon Institute of Technology</institution>
          ,
          <addr-line>Patia, Bhubaneswar, 751024, Odisha</addr-line>
          ,
          <country country="IN">India</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper provides a comprehensive insight into the translation system developed by team "IIIT-BH-MT" for submission to the Machine Translation for Indian Languages(MTIL) track on Forum for Information Retrieval Evaluation (FIRE2023). Our submission is on general translation task and domain specific translation task on Hindi to Odia and Odia to Hindi languages. The system harnesses a cutting-edge Transformer-based architecture, specifically leveraging the NLLB-200 model, which has been finetuned using domain-specific and general domain Datasets. The robustness of our system is evident in its proficiency in handling both the translation tasks, demonstrating its versatility across diferent translation domains. Our results demonstrate robust performance across all evaluated metrics. A standout accomplishment of our system is its exceptional performance across the two translation tasks. Our system secured top positions for both the translation tasks. This system not only help us in understand the dificulties and the intricacies of translation between Hindi-Odia language pairs better, but also paves the way for future research to make translations more accurate and efective.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Neural Machine Translation</kwd>
        <kwd>Fine-tuning</kwd>
        <kwd>NLLB-200</kwd>
        <kwd>Machine Translation</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>Natural language is a significant part of mankind, covering a wide range of linguistic variations
and cultural expression. With more than 23 scheduled languages and 19500 dialects, India,
in particular, has an incredibly high level of linguistic variety. The rapid increase in Internet
accessibility across the country has enabled people from diverse regions to get extensive access
to online services ranging from government services, health care services, etc. However, in
order for this accessibility to be genuinely significant, Internet services must be provided in
the user’s native language, ensuring that the wealth of information can be completely utilized.
Translation of important information into local languages has great potential to serve society
in areas like agriculture, health, and government among others. Thus, it has become more and
more clear that reliable machine translation systems are required, especially those that are
made expressly to provide smooth translation across various Indian languages. As we navigate
through the nuanced challenges of language diversity in India, our focus is on advancing neural
machine translation for Indian language pairs. Machine translation is the need of the hour to
bridge the gap between diferent language pairs.</p>
      <p>
        Machine translation among diferent Indian languages can be done using multilingual neural
machine translation(MNMT). Despite having roots in the NMT period[
        <xref ref-type="bibr" rid="ref1 ref2">1, 2</xref>
        ], MNMT did not
achieve its first major breakthrough until Google’s end-to-end MNMT [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. At that time, the
artificial token was first introduced for the translation task at the beginning of the input source
sentence to indicate the specified target language, such as "2en" as translating into English. This
model employed a common word-piece vocabulary and enabled MNMT via a single encoder
and decoder model training. Then via the mBERT-50 [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], M2M-100 [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ], and NLLB [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] models.
Meta(formerly Facebook) AI expanded the coverage of multilingual translation into 50, 100, and
200+ languages using the later developed structure Transformer and BERT [
        <xref ref-type="bibr" rid="ref7 ref8">7, 8</xref>
        ]. However, all
these models are pre-trained on general domain and not on any specific domain, which sets an
obstacle for MT applications in serving to communities on a specific domain.
      </p>
      <p>
        To encourage researchers for machine translation among Indian languages, FIRE-2023
organized a track named Machine Translation for Indian Languages(MTIL 2023)[
        <xref ref-type="bibr" rid="ref10 ref9">9, 10</xref>
        ]. The
FIRE-2023 MTIL track involves developing a robust machine translation system for translating
from the Indian language to the Indian language. There are two tasks in this track. Task 1 is a
"General Translation Task" and task 2 is a "Domain Specific Translation Task". Task 1 requires
building a machine translation model to translate among 12 Indian language pairs. The task-2
which is domain specific translation task requires to building of machine translation models for
the Governance and Healthcare domains. Both the domains have 8 Indian language pairs.
      </p>
      <p>
        We participated in the FIRE-2023 MTIL for both tasks. In both the tasks our team participated
in Odia to Hindi and Hindi to Odia language pairs. Our submissions to the FIRE-2023 MTIL task
consist of fine-tuning the NLLB-200[
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], a state-of-the-art machine translation model designed
specifically for settings with limited resources. NLLB-200 is trained in 1220 language pairs
that include 202 languages including Odia and Hindi, which are two of the languages used in
the MTIL track. We enhance the model by further training them using data from the general
domain. We also train the model on governance domain data and health care domain data.
Model assessment is conducted using chrF [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ], the oficial metric for the task. Our model
archives the highest chrF for both tasks among all participating groups in Odia to Hindi and
Hindi to Odia language pairs.
      </p>
    </sec>
    <sec id="sec-2">
      <title>2. Related Work</title>
      <p>This section presents some related literature for machine translation for Hindi-Odia and
literature for fine-tuning approaches for MT.</p>
      <p>
        J. Routray et al. [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] presents a shallow parser-based Hindi to Odia MT system. They have
used the Apertium platform which is a shallow parser level transformer model. They have
also used FST in all modules which makes their the MT model faster. They have also used
the TAM(Tense, Aspect, and Modelling) concept in transfer module for building transfer rules
between Hindi and Odia in the Apertium platform.
      </p>
      <p>
        The following literature is available which uses a fine-tuning approach of existing MT models.
Gu et al. [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] proposes a model which fine-tuned NLLB-200-600M, a multilingual model for the
task of MT into indigenous American languages. Han et al. [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] proposes transfer learning [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ]
for NMT via fine-tuning the Meta AI’s MPLM model.
      </p>
      <p>By going through the existing literature, there is no work available for machine translation
on specific domains particularly for Hindi- Odia language pairs in both directions. This work
uses the fine-tuning of the existing NLLB-200 model. This work uses the fine-tuning approach
on a dataset of a specific domain to solve tasks of the FIRE-2023 MTIL track.</p>
    </sec>
    <sec id="sec-3">
      <title>3. Dataset</title>
      <p>Our team has meticulously curated datasets to facilitate training in various domains, focusing on
governance, healthcare, and general domains, for both Hindi and Odia language pairs. Within
the governance domain, we have created a total of 21,006 sentence pairs. Similarly, for the
healthcare domain, our dataset comprises 15,094 sentence pairs. Notably, to encompass a
wider scope, we have merged the two sets for the general domain, resulting in a collection of
36,100 sentence pairs. To evaluate the eficiency of our models, we have utilized the dataset
provided by the organizers, which includes 1,000 parallel sentences for each domain, ensuring
comprehensive testing coverage across all domains.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Experimental details</title>
      <p>This section describes the experimental details of the tasks we participated in.</p>
      <p>The study is dedicated to enhancing the translation capabilities between Hindi and Odia. To
achieve this, we have refined the NLLB-200 model, originally developed by the NLLB Team in
2022, through further training. This fine-tuning process involved the utilization of the datasets,
with the ultimate goal of creating a notably efective machine translation system for specific
domains like governance and healthcare as well as for general domain.</p>
      <p>The NLLB-200 model, which serves as the foundation for this study, is a distilled version with a
substantial 600 million parameters. It operates on a Seq2Seq (Sequence-to-Sequence) framework,
a type of model specifically designed to convert sequences from one domain, such as sentences in
one language, to sequences in another domain, such as sentences in another language. The study
uses Hugging Face’s transformers library, notably leveraging the AutoModelForSeq2SeqLM
class for the model.</p>
      <p>
        The pipeline shown in Figure 1 includes several distinct steps:
• Preprocessing: The raw text data of the dataset undergoes an important preprocessing
step to prepare it for the machine translation process. This involves tokenizing each
sentence in both the source and target languages using a fast tokenizer based on Byte-Pair
Encoding (BPE) [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ]. As a result of this tokenization, an array of input-ids is generated
for each sentence, representing a numerical form of the tokenized sentence. Additionally,
an attention-mask array is created to identify the positions of the actual tokens within
the sentences.
      </p>
      <p>In the end, this preprocessing stage produces appropriately processed model inputs that
include the input ids and attention mask for the target languages (Odia/Hindi) and the</p>
      <p>Epochs - 50
Learning Rate - 2e-5</p>
      <p>Batch Size - 32
Weight Decay - 0.01</p>
      <p>Training
Parameters</p>
      <p>Fine-tuned</p>
      <p>Model
NLLB-200</p>
      <p>Model</p>
      <p>Gradient
Optimizer</p>
      <p>Loss</p>
      <p>Dataset
(Source,Target)
(Hindi-Odia, Odia-Hindi)</p>
      <p>Tokenization</p>
      <p>Tokenized
source, target sentence
pairs</p>
      <p>Data
Gathering</p>
      <p>Prepared input data for
model training
source language (Hindi/Odia). These preprocessed inputs make sure the model is ready
to handle the translation of text data between the designated languages by laying the
groundwork for the next steps of the translation process.
• Model fine-tuning: Following the preprocessing stage, the refined inputs are fed into the
NLLB-200 model for the purpose of model training. The model performs the complex task
of understanding and mapping the source input tokens to their matching target tokens
by utilizing a supervised learning framework. During this phase of iterative learning, the
model carefully adjusts its internal parameters in order to reduce the diference between
the generated predictions and the real target sentences—also referred to as the labels. This
thorough optimization not only guarantees the model’s correctness but also develops
its ability to distinguish and understand linguistic subtleties, which in turn enables it to
provide accurate and dependable translations between the specified source and target
languages.
• Post-processing:After the training phase, the model creates predictions (called preds)
using input from a specific source language (Hndi/Odia). These predictions are originally
delivered in the form of token ids, which reflect the model’s generated output. Following
that, these token ids are decoded with the help of the "tokenizer.batch-decode" method.</p>
      <p>
        Through this important step, the numeric representations of the model’s predictions are
converted back into human-readable text, efectively restoring them to a format that is
readily understandable and suitable for detailed evaluation.
• Model Evaluation:Finally, the translations produced by the model are assessed using the
Bilingual Evaluation Understudy (BLEU) [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] , chrF [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ], chrF++ [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ], COMET [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ],and
TER scores which are popular machine translation measures. These scores compare
machine-generated translations to one or more human-generated reference translations,
ofering a quantitative assessment of translation quality. Higher scores correspond to
better performance.
      </p>
      <p>Overall, this all-inclusive pipeline covers the complete range of tasks, starting with the
critical preprocessing phase and ending with the thorough evaluation process. A coherent and
systematic strategy for creating a reliable Hindi/Odia to Odia/Hindi machine translation model
is shown by combining the data preprocessing, model training, and subsequent validation. This
organised approach makes sure that the model is efectively trained and thoroughly tested in
order to provide accurate and contextually appropriate translations from Odia to Hindi and
from Hindi to Odia.</p>
    </sec>
    <sec id="sec-5">
      <title>5. Result Analysis</title>
      <p>We present the oficial evaluation result for all the tasks of our model in table 1.</p>
      <p>After the fine-tuning process, these models were employed to generate translations for the
test data provided by the FIRE-2023 MTIL track. The quality of the translation was assessed
using chrF, BLEU, TER, and COMET. chrF was used as the oficial metric for evaluation.</p>
      <p>In task 1 (General domain), the Hindi to Odia model achieved a chrF score of 61.9976 on the
test set, while the Odia to Hindi model scored 66.3945. These results highlight the impressive
performance of the models and their capability to handle more complex translation tasks.</p>
      <p>In the case of task 2, which comprises two subtasks focused on the Governance and
Healthcare domains respectively, the Hindi to Odia model achieved a chrF score of 65.1366 for the
Governance domain, while the Odia to Hindi model achieved a score of 49.2011. These results
indicate that the Hindi to Odia model performed better for the governance domain compared to
the Odia to Hindi model on the respective test set.</p>
      <p>In the second subtask focused on the Healthcare domain, the Hindi to Odia model attained a
chrF score of 56.7486 on the provided test set, while the Odia to Hindi model achieved a score
of 60.7855. These results of the models exhibit robustness and deliver strong performance on
the domain-specific translation task.</p>
    </sec>
    <sec id="sec-6">
      <title>6. Conclusion</title>
      <p>In this paper, we showcased our entry to the FIRE-2023 MTIL track. Our system leveraged the
NLLB-200-600M pre-trained model to perform translations from Hindi to Odia and Odia to Hindi
across the General, Governance, and Healthcare domains. Our models demonstrate encouraging
outcomes across these tasks, underscoring the efectiveness of the methodology employed for
these machine translation models. These empirical results also lay the groundwork for future
improvements and exploration in the domain-specific machine translation domain.</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgments</title>
      <p>We thank the Ministry of Electronics and Information Technology (MeitY), Government of India
for their assistance through the Project ILMT.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>D.</given-names>
            <surname>Dong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <surname>H.</surname>
          </string-name>
          <article-title>Wang, Multi-task learning for multiple language translation</article-title>
          ,
          <source>Association for Computational Linguistics</source>
          ,
          <year>2015</year>
          , pp.
          <fpage>1723</fpage>
          -
          <lpage>1732</lpage>
          . doi:
          <volume>10</volume>
          . 3115/v1/
          <fpage>P15</fpage>
          -1166.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>O.</given-names>
            <surname>Firat</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Cho</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Bengio</surname>
          </string-name>
          <article-title>, Multi-way, multilingual neural machine translation with a shared attention mechanism</article-title>
          ,
          <source>Association for Computational Linguistics</source>
          ,
          <year>2016</year>
          , pp.
          <fpage>866</fpage>
          -
          <lpage>875</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>N16</fpage>
          -1101.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>M.</given-names>
            <surname>Johnson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Schuster</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q. V.</given-names>
            <surname>Le</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Krikun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Thorat</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Viégas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Wattenberg</surname>
          </string-name>
          , G. Corrado,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hughes</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Dean</surname>
          </string-name>
          ,
          <article-title>Google's multilingual neural machine translation system: Enabling zero-shot translation, Transactions of the Association for Computational Linguistics 5 (</article-title>
          <year>2017</year>
          )
          <fpage>339</fpage>
          -
          <lpage>351</lpage>
          . doi:
          <volume>10</volume>
          .1162/tacl_a_
          <fpage>00065</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Tang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Tran</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.-J.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Chaudhary</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Fan</surname>
          </string-name>
          ,
          <article-title>Multilingual translation with extensible multilingual pretraining and finetuning</article-title>
          , https://doi.org/10.48550/arXiv.
          <year>2008</year>
          .
          <volume>00401</volume>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>A.</given-names>
            <surname>Fan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Bhosale</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Schwenk</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Ma</surname>
          </string-name>
          , A.
          <string-name>
            <surname>El-Kishky</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Goyal</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Baines</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          <string-name>
            <surname>Celebi</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>Wenzek</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          <string-name>
            <surname>Chaudhary</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Goyal</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Birch</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          <string-name>
            <surname>Liptchinsky</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Edunov</surname>
            , E. Grave,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Auli</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Joulin</surname>
          </string-name>
          ,
          <article-title>Beyond english-centric multilingual machine translation</article-title>
          , arXiv:
          <year>2010</year>
          .
          <volume>11125</volume>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>N.</given-names>
            <surname>Team</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. R.</given-names>
            <surname>Costa-jussà</surname>
          </string-name>
          , J.
          <string-name>
            <surname>Cross</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          <string-name>
            <surname>Çelebi</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Elbayad</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Heafield</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Hefernan</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          <string-name>
            <surname>Kalbassi</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Lam</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Licht</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Maillard</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Sun</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>Wenzek</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Youngblood</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          <string-name>
            <surname>Akula</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Barrault</surname>
            ,
            <given-names>G. M.</given-names>
          </string-name>
          <string-name>
            <surname>Gonzalez</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Hansanti</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Hofman</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Jarrett</surname>
            ,
            <given-names>K. R.</given-names>
          </string-name>
          <string-name>
            <surname>Sadagopan</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Rowe</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Spruit</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Tran</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Andrews</surname>
            ,
            <given-names>N. F.</given-names>
          </string-name>
          <string-name>
            <surname>Ayan</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Bhosale</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Edunov</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Fan</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Gao</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          <string-name>
            <surname>Goswami</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Guzmán</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Koehn</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Mourachko</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Ropers</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Saleem</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          <string-name>
            <surname>Schwenk</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Wang</surname>
          </string-name>
          ,
          <article-title>No language left behind: Scaling human-centered machine translation</article-title>
          ,
          <source>arXiv:2207.04672v3 [</source>
          (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</surname>
          </string-name>
          , M.-
          <string-name>
            <given-names>W.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Toutanova</surname>
          </string-name>
          , Bert:
          <article-title>Pre-training of deep bidirectional transformers for language understanding</article-title>
          ,
          <source>Association for Computational Linguistics</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>4171</fpage>
          -
          <lpage>4186</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>N19</fpage>
          -1423.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <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>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Kaiser</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Polosukhin</surname>
          </string-name>
          , Attention is all you need,
          <volume>1706</volume>
          .03762v7 (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>S.</given-names>
            <surname>Gangopadhyay</surname>
          </string-name>
          , G. Epili,
          <string-name>
            <given-names>P.</given-names>
            <surname>Majumder</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Gain</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Appicharla</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ekbal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ahsan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Sharma</surname>
          </string-name>
          , Overview of mtil track at fire 2023:
          <article-title>Machine translation for indian languages</article-title>
          ,
          <source>in: Proceedings of the 15th Annual Meeting of the Forum for Information Retrieval Evaluation</source>
          ,
          <string-name>
            <surname>FIRE</surname>
          </string-name>
          <year>2023</year>
          , Goa,
          <source>India. December 15-18</source>
          ,
          <year>2023</year>
          , ACM,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>S.</given-names>
            <surname>Gangopadhyay</surname>
          </string-name>
          , G. Epili,
          <string-name>
            <given-names>P.</given-names>
            <surname>Majumder</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Gain</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Appicharla</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ekbal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ahsan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Sharma</surname>
          </string-name>
          , Overview of mtil track at fire 2023:
          <article-title>Machine translation for indian languages</article-title>
          , in: K. Ghosh,
          <string-name>
            <given-names>T.</given-names>
            <surname>Mandl</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Majumder</surname>
          </string-name>
          , M. Mitra (Eds.), Working Notes of FIRE 2023 -
          <article-title>Forum for Information Retrieval Evaluation, Goa, India</article-title>
          .
          <source>December 15-18</source>
          ,
          <year>2023</year>
          , CEUR Workshop Proceedings, CEUR-WS.org,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>M.</given-names>
            <surname>Popović</surname>
          </string-name>
          ,
          <article-title>chrf: character n-gram f-score for automatic mt evaluation</article-title>
          ,
          <source>Association for Computational Linguistics</source>
          ,
          <year>2015</year>
          , pp.
          <fpage>392</fpage>
          -
          <lpage>395</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>W15</fpage>
          -3049.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>J.</given-names>
            <surname>Rautaray</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Hota</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. S.</given-names>
            <surname>Gochhayat</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A Shallow</given-names>
            <surname>Parser-based Hindi</surname>
          </string-name>
          to Odia
          <source>Machine Translation System</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>51</fpage>
          -
          <lpage>62</lpage>
          . doi:
          <volume>10</volume>
          .1007/
          <fpage>978</fpage>
          -981-10-8055-
          <issue>5</issue>
          _
          <fpage>6</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>T.</given-names>
            <surname>Gu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Ouyang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <article-title>Playground low resource machine translation system for the 2023 americasnlp shared task</article-title>
          ,
          <source>Association for Computational Linguistics</source>
          ,
          <year>2023</year>
          , pp.
          <fpage>173</fpage>
          -
          <lpage>176</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2023</year>
          .americasnlp-
          <volume>1</volume>
          .
          <fpage>19</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>L.</given-names>
            <surname>Han</surname>
          </string-name>
          ,
          <string-name>
            <surname>G</surname>
          </string-name>
          . Erofeev, I. Sorokina,
          <string-name>
            <given-names>S.</given-names>
            <surname>Gladkof</surname>
          </string-name>
          , G. Nenadic,
          <article-title>Investigating massive multilingual pre-trained machine translation models for clinical domain via transfer learning</article-title>
          ,
          <source>arXiv:2210.06068v2</source>
          (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>B.</given-names>
            <surname>Zoph</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Yuret</surname>
          </string-name>
          , J. May,
          <string-name>
            <given-names>K.</given-names>
            <surname>Knight</surname>
          </string-name>
          ,
          <article-title>Transfer learning for low-resource neural machine translation</article-title>
          ,
          <source>Association for Computational Linguistics</source>
          ,
          <year>2016</year>
          , pp.
          <fpage>1568</fpage>
          -
          <lpage>1575</lpage>
          . doi:
          <volume>10</volume>
          . 18653/v1/
          <fpage>D16</fpage>
          -1163.
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>R.</given-names>
            <surname>Sennrich</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Haddow</surname>
          </string-name>
          ,
          <string-name>
            <surname>A. Birch,</surname>
          </string-name>
          <article-title>Neural machine translation of rare words with subword units</article-title>
          ,
          <source>Association for Computational Linguistics</source>
          ,
          <year>2016</year>
          , pp.
          <fpage>1715</fpage>
          -
          <lpage>1725</lpage>
          . doi:
          <volume>10</volume>
          .18653/ v1/
          <fpage>P16</fpage>
          -1162.
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>K.</given-names>
            <surname>Papineni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Roukos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Ward</surname>
          </string-name>
          , W.-J. Zhu, Bleu, Association for Computational Linguistics,
          <year>2001</year>
          , p.
          <fpage>311</fpage>
          . doi:
          <volume>10</volume>
          .3115/1073083.1073135.
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>M.</given-names>
            <surname>Popović</surname>
          </string-name>
          , chrf++
          <article-title>: words helping character n-grams</article-title>
          ,
          <source>Association for Computational Linguistics</source>
          ,
          <year>2017</year>
          , pp.
          <fpage>612</fpage>
          -
          <lpage>618</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>W17</fpage>
          -4770.
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>R.</given-names>
            <surname>Rei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Stewart</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. C.</given-names>
            <surname>Farinha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Lavie</surname>
          </string-name>
          ,
          <article-title>Comet: A neural framework for mt evaluation</article-title>
          ,
          <source>Association for Computational Linguistics</source>
          ,
          <year>2020</year>
          , pp.
          <fpage>2685</fpage>
          -
          <lpage>2702</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2020</year>
          . emnlp-main.
          <volume>213</volume>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>