<!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>BFCAI at CoLI-Tunglish@FIRE 2023: Machine Learning Based Model for Word-level Language Identification in Code-mixed Tulu Texts</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Ahmed M. Fetouh</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Hamada Nayel</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Computer Science Department, Faculty of Computers and Artificial Intelligence, Benha University</institution>
          ,
          <country country="EG">Egypt</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper describes the model submitted by the BFCAI team for the CoLI-Tunglish shared task held at FIRE 2023. The proposed model used a character -gram TF-IDF vectorization as a representation scheme. TF-IDF has been enhanced using word length, then applied several Machine Learning algorithms namely; Support Vector Machines, Stochastic Gradient Descent, K-Nearest Neighbors and Multi-layer Perceptron. SVM outperformed all other classifiers. All submissions are considered and ranked based on the macro average F1 score. SVM reported an F1 score of 81.2% on the test set and achieved the second rank among all other submissions.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Language Identification</kwd>
        <kwd>Natural Language Processing</kwd>
        <kwd>Machine Learning</kwd>
        <kwd>Character N-Gram</kwd>
        <kwd>Text Classification</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        language of the word. Additionally, the use of slang, informal language and abbreviations
can also make it dificult for LI systems to accurately identify the language of the text [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
Tulu is a regional language and Kannada is the language of the Indian state of Karnataka.
Tuluvas, who are native speakers of Tulu, typically know both Tulu and Kannada languages
lfuently. Furthermore, many Kannada terms are used in the Tulu language. English is also
widely known by many Tulu speakers, especially those who using the social media platforms.
Tulu songs, videos, movies, comedy programs and skits are popular on social media.
The comments posted by Tulu users of Tulu programs on social media are often a
code-mix of Tulu, Kannada, and English. This is because many Tuluvas face dificulties
in using the Kannada script to post messages or comments on social media due to the
technological limitations of key- boards/keypads on computers/smartphones. Additionally,
the complexity of framing words with consonant conjuncts makes it challenging to type
Tulu using the Kannada alphabet. For this reason, many people only use the Roman
alphabet or a combination of Kannada and Roman script to post comments on social media [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ].
The primary goal of this collaborative task is to develop a new approach for LI in
mixed languages. The task entails dealing with tokens from various categories, including
English, Kannada, Mixed-language, Tulu, names, locations, symbol, and other [
        <xref ref-type="bibr" rid="ref6 ref7">6, 7</xref>
        ]. To
address this issue, the paper employs a variety of machine learning models as well as the
TF-IDF representation schema. Furthermore, the word length is used to improve the word
representation. This allows the algorithms to more accurately identify the language of a new
word.
      </p>
      <sec id="sec-1-1">
        <title>Category</title>
      </sec>
      <sec id="sec-1-2">
        <title>Kannada</title>
      </sec>
      <sec id="sec-1-3">
        <title>English</title>
      </sec>
      <sec id="sec-1-4">
        <title>Tulu</title>
      </sec>
      <sec id="sec-1-5">
        <title>Mixed-language</title>
      </sec>
      <sec id="sec-1-6">
        <title>Name</title>
      </sec>
      <sec id="sec-1-7">
        <title>Location</title>
      </sec>
      <sec id="sec-1-8">
        <title>Other</title>
      </sec>
      <sec id="sec-1-9">
        <title>Description</title>
      </sec>
      <sec id="sec-1-10">
        <title>Kannada words written in Roman script</title>
      </sec>
      <sec id="sec-1-11">
        <title>Pure English words</title>
      </sec>
      <sec id="sec-1-12">
        <title>Tulu words written in Roman script</title>
      </sec>
      <sec id="sec-1-13">
        <title>Combination of Kannada, Tulu and/or English words in Roman script</title>
      </sec>
      <sec id="sec-1-14">
        <title>Words that indicate name of person (including Indian names)</title>
      </sec>
      <sec id="sec-1-15">
        <title>Words that indicate locations</title>
      </sec>
      <sec id="sec-1-16">
        <title>Words not belonging to any of the above categories and words of other languages</title>
      </sec>
    </sec>
    <sec id="sec-2">
      <title>2. Dataset</title>
      <p>
        The CoLI-Tunglish dataset [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] for the shared task CoLI-Tunglish [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] contains English
and Kannada words written in Roman script. The data is divided into eight
categories: Tulu, Kannada, English, Mixed-language, Name, sym, Location and
Other. Description of the dataset are shown in Table 1. The dataset is divided into
training, development, and test set composed of 21,727, 3,582, 10,506 samples respectively.
The distribution of training set tokens across the labels is illustrated in Figure 1.
This code-mixed dataset allows for developing systems that can handle English-Kannada
LI at the word level. The diversity of categories enables models to distinguish between
names, locations, mixed-language words, and other tokens. Overall, the CoLI-Tunglish dataset
provides a challenging benchmark for evaluating language identification systems on Romanized
English-Kannada code-mixed data.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Methodology</title>
      <p>In this section, a thorough explanation of the methodology we employed will be presented,
which involves utilizing TF-IDF vectorization. Furthermore, we perform a comparison of the
results acquired from several machine learning models.</p>
      <sec id="sec-3-1">
        <title>3.1. Feature Extraction</title>
        <p>In this study, TF-IDF was used with character -gram features to represent each word as a feature
vector. The -gram range is set to (1, 4), which means that we will consider character unigram,
bigram, trigram, and 4-gram. TF-IDF is a numerical statistic that reflects the importance of a
term ( in this case, an -gram) in a document within a collection of documents. It combines the
ideas of how frequently a word appears in a document (term frequency/TF) and how important
a word is. Based on the total number of documents in which it appears (inverse document
frequency/IDF) is calculated by the following formula:
 =  · log
︂(  + 1 )︂
 + 1
(1)
Where,  is the weight of word d in vector ,  is the count of word d in document
,  is the total number of words, and  is the count of word d in all words.</p>
        <p>
          By calculating the TF-IDF values for each -gram, we obtain a numerical feature matrix that
represents the textual data efectively [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ].
        </p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Feature Enhancement</title>
        <p>By augmenting the dataset to incorporate the additional attribute of "word length",
as depicted in Table 3, we capture additional information about the words beyond
their textual content. This feature provides valuable insights into the relationship
between word length and language classification. The combination of the TF-IDF and
word length enable a comprehensive analysis of the dataset. This leads to increased
accuracy and a better understanding of the core patterns in language identification.</p>
        <sec id="sec-3-2-1">
          <title>Words</title>
          <p>Oo
anna
ninna
pukuli
naddh
korpa</p>
          <p>.
shivam
music
movie</p>
        </sec>
        <sec id="sec-3-2-2">
          <title>Language</title>
        </sec>
        <sec id="sec-3-2-3">
          <title>English</title>
        </sec>
        <sec id="sec-3-2-4">
          <title>Kannada</title>
        </sec>
        <sec id="sec-3-2-5">
          <title>Tulu</title>
        </sec>
        <sec id="sec-3-2-6">
          <title>Tulu</title>
        </sec>
        <sec id="sec-3-2-7">
          <title>Tulu</title>
        </sec>
        <sec id="sec-3-2-8">
          <title>Tulu</title>
          <p>sym</p>
        </sec>
        <sec id="sec-3-2-9">
          <title>Name</title>
        </sec>
        <sec id="sec-3-2-10">
          <title>English</title>
        </sec>
        <sec id="sec-3-2-11">
          <title>English</title>
          <p>The feature of word length can be instrumental in diferentiating between languages by providing
valuable insights into the unique word structures and patterns of each language. When analyzing
the average word length, along with other statistical measures such as the distribution of word
lengths, we can efectively distinguish one language from another.</p>
          <p>
            In the case of the provided data [
            <xref ref-type="bibr" rid="ref5">5</xref>
            ], as show in Table 3 we can observe that English has an
average word length of 4.710, while Kannada has an average word length of 5.968 and Tulu has
an average word length of 5.458. These variations in average word length indicate diferences
in the linguistic structures of these languages. Additionally, the average word length for sym
is 1.0, suggesting that it likely represents a language or category with very short words (dot).
Furthermore, the average word length for Name is 6.006, indicating that it might be a category
associated with personal names or proper nouns. The Mixed category has an average word
length of 7.469, suggesting that it contains a combination of multiple languages or texts with
longer words. Finally, the average word length for Location is 6.878, indicating that it might
represent a category related to geographical locations.
          </p>
        </sec>
      </sec>
      <sec id="sec-3-3">
        <title>3.3. Classification</title>
        <p>For the classification task, we employed a
algorithms to evaluate the efectiveness of our
variety
method.</p>
        <p>of
machine learning
These algorithms</p>
        <sec id="sec-3-3-1">
          <title>Language</title>
        </sec>
        <sec id="sec-3-3-2">
          <title>English</title>
        </sec>
        <sec id="sec-3-3-3">
          <title>Kannada</title>
        </sec>
        <sec id="sec-3-3-4">
          <title>Tulu</title>
          <p>sym</p>
        </sec>
        <sec id="sec-3-3-5">
          <title>Name</title>
        </sec>
        <sec id="sec-3-3-6">
          <title>Mixed</title>
        </sec>
        <sec id="sec-3-3-7">
          <title>Location</title>
        </sec>
        <sec id="sec-3-3-8">
          <title>Other</title>
          <p>
            are Support Vector Machines
K-Nearest Neighbors (KNN), and
(SVM), Stochastic Gradient Descent
Multi-layer Perceptron (MLP) classifiers.
(SGD),
• SVM: is a powerful supervised learning algorithm that can be used for dialect
classification [
            <xref ref-type="bibr" rid="ref9">9</xref>
            ]. It finds an optimal hyperplane in a high-dimensional space to classify
data points into diferent classes. SVMs are efective but can be computationally expensive.
• SGD: is a well-known optimization algorithm for training machine learning
models in NLP tasks such as LI [
            <xref ref-type="bibr" rid="ref10">10</xref>
            ]. It works by iteratively updating the
model’s parameters in the direction of the negative gradient of the loss
function. The gradient is calculated using a portion of the training data, called
a mini-batch. This makes SGD computationally eficient, even for large datasets.
• KNN: is a non-parametric, supervised machine learning algorithm that can be used
for both classification and regression tasks. It works with the aid of finding the k most
comparable instances in the training set to a new instance, Following that, the new
instance is assigned to the class of the majority of those k instances. KNN is a versatile and
powerful algorithm that may be used for a range of NLP tasks such as rumor detection [
            <xref ref-type="bibr" rid="ref11">11</xref>
            ].
• MLP: is artificial neural network composed of multiple layers of interconnected nodes
(neurons). It uses forward propagation to compute outputs based on weighted sums and
activation functions. MLPs can learn complex non-linear relationships between input
and output data, making them suitable for various tasks such as LI [
            <xref ref-type="bibr" rid="ref12">12</xref>
            ]. However, they
require careful tuning of hyper parameters and can be prone to over-fitting if not properly
regularized.
          </p>
        </sec>
      </sec>
      <sec id="sec-3-4">
        <title>3.4. Evaluation Metrics</title>
        <p>
          Macro-averaged and weighted-averaged scores have been used to evaluate the task. However
ifnal ranking will be based on macro-averaged F1 score [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ].
        </p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Experiments and Results</title>
      <p>
        In this task, we explore the performance of various machine learning models on the
CoLI-Tunglish LI dataset [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. As shown in Table 4, we implemented four popular algorithms
SVM, KNN, SGD and MLP. Our goal was to determine which model accurately classify the
mixed-language tokens in the development set.
      </p>
      <sec id="sec-4-1">
        <title>Algorithm</title>
      </sec>
      <sec id="sec-4-2">
        <title>SVM(Linear)</title>
      </sec>
      <sec id="sec-4-3">
        <title>MLP(10 nodes)</title>
        <p>SGD
KNN
A variety of evaluation metrics were considered to properly assess model performance on
this challenging mixed-language task. Precision, recall, F1 score, macro average and weighted
average were all measured.</p>
        <p>The results indicate that SVM achieved the highest performance with a weighted
average F1 score of 0.90 and a macro average F1 score of 0.83 on the development set.</p>
        <p>We’ve got additionally compared our work with the top-ranked groups for
the CoLI-Tunglish shared task. The results shown in Table 5 Demonstrate that
SVM-based submission achieved the second highest F1 score among all teams. This
comparison highlights the efectiveness of our approach in language identification
in code-mixed Tulu texts. Our team submitted three runs using three diferent ML
models, namely SGD, MLP, and SVM. The results of all runs can be observed in Table 6.
The source code of the proposed model is available at GitHub 1.</p>
      </sec>
      <sec id="sec-4-4">
        <title>Team Name</title>
      </sec>
      <sec id="sec-4-5">
        <title>SATLAB</title>
      </sec>
      <sec id="sec-4-6">
        <title>BFCAI(Ours)</title>
      </sec>
      <sec id="sec-4-7">
        <title>Poorvi</title>
      </sec>
      <sec id="sec-4-8">
        <title>MUCS</title>
      </sec>
      <sec id="sec-4-9">
        <title>IRLab@IITBHU</title>
      </sec>
      <sec id="sec-4-10">
        <title>Run Name Run2 Run3 Run1</title>
        <p>Run1
Run1
1https://github.com/Ahmedmegahed72/CoLI-Tunglish</p>
      </sec>
      <sec id="sec-4-11">
        <title>BFCAI</title>
      </sec>
      <sec id="sec-4-12">
        <title>BFCAI</title>
      </sec>
      <sec id="sec-4-13">
        <title>BFCAI</title>
        <p>Run1 (SGD)
Run2 (MLP)
Run3 (SVM)</p>
      </sec>
      <sec id="sec-4-14">
        <title>Precision Recall F1 score 0.833 0.867</title>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion</title>
      <p>In this study, we described our system submitted to the CoLI-Tunglish shared task on word-level
language identification in code-mixed Tulu texts. We explored a variety of machine-learning
approaches and found that a character -gram TF-IDF based feature representation and
word length combined with an SVM classifier achieved the best performance for this task. In
future work, we plan to discover the usage of pre-trained models to improve the performance
of classification. We believe that transfer learning can be a valuable tool for this task.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>T.</given-names>
            <surname>Jauhiainen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lui</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Zampieri</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Baldwin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lindén</surname>
          </string-name>
          ,
          <article-title>Automatic language identification in texts: A survey</article-title>
          ,
          <source>Journal of Artificial Intelligence Research</source>
          <volume>65</volume>
          (
          <year>2019</year>
          )
          <fpage>675</fpage>
          -
          <lpage>782</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>S.</given-names>
            <surname>Dowlagar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Mamidi</surname>
          </string-name>
          ,
          <article-title>A survey of recent neural network models on code-mixed indian hate speech data, in: Proceedings of the 13th Annual Meeting of the Forum for Information Retrieval Evaluation</article-title>
          , FIRE '21,
          <string-name>
            <surname>Association</surname>
          </string-name>
          for Computing Machinery, New York, NY, USA,
          <year>2022</year>
          , p.
          <fpage>67</fpage>
          -
          <lpage>74</lpage>
          . URL: https://doi.org/10.1145/3503162.3503168. doi:
          <volume>10</volume>
          .1145/3503162. 3503168.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>F.</given-names>
            <surname>Balouchzahi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Shashirekha</surname>
          </string-name>
          ,
          <article-title>Mucs@ dravidian-codemix-fire2020: Saco-sentimentsanalysis for codemix text</article-title>
          .,
          <source>in: FIRE (Working Notes)</source>
          ,
          <year>2020</year>
          , pp.
          <fpage>495</fpage>
          -
          <lpage>502</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>U.</given-names>
            <surname>Barman</surname>
          </string-name>
          ,
          <string-name>
            <surname>A. Das</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Wagner</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Foster</surname>
          </string-name>
          ,
          <article-title>Code mixing: A challenge for language identification in the language of social media</article-title>
          ,
          <source>in: Proceedings of the first workshop on computational approaches to code switching</source>
          ,
          <year>2014</year>
          , pp.
          <fpage>13</fpage>
          -
          <lpage>23</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>A.</given-names>
            <surname>Hegde</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. D.</given-names>
            <surname>Anusha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Coelho</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H. L.</given-names>
            <surname>Shashirekha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B. R.</given-names>
            <surname>Chakravarthi</surname>
          </string-name>
          ,
          <article-title>Corpus Creation for Sentiment Analysis in Code-Mixed Tulu Text, in: Proceedings of the 1st Annual Meeting of the ELRA</article-title>
          /ISCA Special Interest Group on
          <string-name>
            <surname>Under-Resourced Languages</surname>
          </string-name>
          ,
          <year>2022</year>
          , pp.
          <fpage>33</fpage>
          -
          <lpage>40</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>F.</given-names>
            <surname>Balouchzahi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Butt</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Hegde</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Ashraf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Shashirekha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Sidorov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gelbukh</surname>
          </string-name>
          ,
          <article-title>Overview of coli-kanglish: Word level language identification in code-mixed kannada-english texts at icon 2022</article-title>
          ,
          <source>in: Proceedings of the 19th International Conference on Natural Language Processing (ICON): Shared Task on Word Level Language Identification in Code-mixed Kannada-English Texts</source>
          ,
          <year>2022</year>
          , pp.
          <fpage>38</fpage>
          -
          <lpage>45</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>A.</given-names>
            <surname>Hagde</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Balouchzahi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Coelho</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. Hosahalli</given-names>
            <surname>Lakshmaiah</surname>
          </string-name>
          ,
          <string-name>
            <surname>H.</surname>
          </string-name>
          <article-title>A Nayel, S. Butt, Overview of coli-tunglish: Word-level language identification in code-mixed tulu texts at fire 2023, in: Forum for Information Retrieval Evaluation FIRE -</article-title>
          <year>2023</year>
          ,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>S.</given-names>
            <surname>Selva</surname>
          </string-name>
          <string-name>
            <surname>Birunda</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. Kanniga</given-names>
            <surname>Devi</surname>
          </string-name>
          ,
          <article-title>A review on word embedding techniques for text classification</article-title>
          ,
          <source>Innovative Data Communication Technologies and Application: Proceedings of ICIDCA</source>
          <year>2020</year>
          (
          <year>2021</year>
          )
          <fpage>267</fpage>
          -
          <lpage>281</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>H. A.</given-names>
            <surname>Nayel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Shashirekha</surname>
          </string-name>
          , Mangalore-university@ inli-fire-2017:
          <article-title>Indian native language identification using support vector machines and ensemble approach</article-title>
          .,
          <source>in: FIRE (Working Notes)</source>
          ,
          <year>2017</year>
          , pp.
          <fpage>106</fpage>
          -
          <lpage>109</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>D.</given-names>
            <surname>Kosmajac</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Keselj</surname>
          </string-name>
          , Dalteam@ inli-fire
          <article-title>-2017: Native language identification using svm with sgd training</article-title>
          .,
          <source>in: FIRE (Working Notes)</source>
          ,
          <year>2017</year>
          , pp.
          <fpage>118</fpage>
          -
          <lpage>122</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>N.</given-names>
            <surname>Ashraf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Nayel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Taha</surname>
          </string-name>
          ,
          <article-title>A comparative study of machine learning approaches for rumors detection in covid-19 tweets</article-title>
          , in: 2022 2nd
          <string-name>
            <given-names>International</given-names>
            <surname>Mobile</surname>
          </string-name>
          ,
          <source>Intelligent, and Ubiquitous Computing Conference (MIUCC)</source>
          ,
          <year>2022</year>
          , pp.
          <fpage>384</fpage>
          -
          <lpage>387</lpage>
          . doi:
          <volume>10</volume>
          .1109/ MIUCC55081.
          <year>2022</year>
          .
          <volume>9781707</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>A.</given-names>
            <surname>Bhola</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K. N.</given-names>
            <surname>Reddy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. J.</given-names>
            <surname>Kumar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Tiwari</surname>
          </string-name>
          ,
          <article-title>Language identification using multi-layer perceptron</article-title>
          ,
          <source>in: 2023 International Conference on Computational Intelligence and Sustainable Engineering Solutions (CISES)</source>
          ,
          <year>2023</year>
          , pp.
          <fpage>1018</fpage>
          -
          <lpage>1022</lpage>
          . doi:
          <volume>10</volume>
          .1109/ CISES58720.
          <year>2023</year>
          .
          <volume>10183574</volume>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>