<!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>Trojan Horses at Touché: Logistic Regression for Classification of Political Debates</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Deepak Chandar S</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Diya Seshan</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Avaneesh Koushik</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>P Mirunalini</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Computer Science and Engineering, Sri Sivasubramaniya Nadar College of Engineering</institution>
          ,
          <addr-line>Tamil Nadu</addr-line>
          ,
          <country country="IN">India</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2024</year>
      </pub-date>
      <abstract>
        <p>This study focuses on multilingual parliamentary speech analysis, specifically identification and classification of the ideology of the speaker's party and their governing status. The approach used here provides valuable insights into the political dynamics of parliamentary debates, enhancing the understanding of legislative discourse. A Logistic Regression model (combined with Count Vectorizer) is employed, trained on a dataset comprising of diverse multilingual parliamentary speech. The model achieves an F1-score of 0.59 for ideology classification and 0.69 for determining governing status. The efectiveness of the model is demonstrated in the context of evaluating parliamentary speeches from multiple countries.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Multilingual Speech Analysis</kwd>
        <kwd>Binary Classification</kwd>
        <kwd>Logistic Regression</kwd>
        <kwd>Count Vectorizer</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>
        Analysing political ideologies has traditionally been a challenging task due to the lack of a detailed
dataset representing individual views. A commonly employed approach which has shown remarkable
prowess in capturing nuanced linguistic patterns by utilizing advanced language models (LLMs) like
BERT and GPT-4, as outlined in this study which analyzes parliamentary representatives’ ideological
positions [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. Previous studies have also explored the eficacy of integrating natural language processing
(NLP) methods into political science research [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. Some such studies made use of advanced NLP methods
to perform sentiment analysis of parliamentary debate transcripts from European parliaments, assessing
if the age, gender, and political orientation of speakers could be detected from their speeches [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
Furthermore, a study on Indian parliamentary debates introduces structured datasets and demonstrates
promising results in stance classification and pragmatic analysis [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. These methodologies have provided
valuable insights into the political dynamics of legislative discourse across various linguistic contexts.
      </p>
      <p>Inspired by the success of these approaches in various previous studies, the work done here aims to
extend and refine existing methodologies for multilingual parliamentary speech analysis. Building upon
the foundation laid by these prior investigations, the accuracy and robustness of classification models
can be enhanced by incorporating additional linguistic features and optimizing model parameters. By
leveraging logistic regression as a reliable framework for binary classification, the aim is to deepen the
understanding of the intricate interplay between political ideology, governing status, and parliamentary
discourse, thereby contributing to the broader discourse on computational approaches to political
analysis.</p>
    </sec>
    <sec id="sec-3">
      <title>3. System Overview</title>
      <sec id="sec-3-1">
        <title>3.1. Dataset Overview</title>
        <p>The dataset comprises a collection of speeches along with metadata that includes the speaker’s gender
and a classification label. The following are the dataset’s attributes:
• id: A unique identifier for each speech record. This attribute helps in referencing and tracking
specific speeches within the dataset.
• text: The original speech text in 28 diferent European languages. This attribute is crucial for
analyses that require the original language.
• text_en: The translated speech text in English. This attribute is useful for analyses where English
is the preferred language for processing or interpretation. This attribute has been used as the
primary source for analysis and was fed into the machine learning model for further processing.
• sex: The gender of the speaker, indicated by ’M’ for male and ’F’ for female. This attribute allows
for gender-based analysis and comparisons.
• label: A classification label for the speech, with possible values ’1’ and ’0’. In the context of
Sub-Task 1, this label indicates the the speaker’s party’s ideological stance: left-wing (0) or
right-wing (1). In the context of Sub-Task 2, this label indicates where the party is in the present
political structure: ruling party (0) or opposition (1).</p>
        <p>Furthermore, on analyzing the dataset for the two sub-tasks, for sub-task 1 (orientation), an average
of 10422 speeches per dataset were present, with an average of 5784 instances as left-wing and 4638
as right-wing. For sub-task 2 (power), an average of 8370 speeches were present, with 4445 instances
as ruling party as 3925 for opposition party. This illustrates that the dataset for both tasks was
welldistributed and balanced, which is crucial for the model to efectively understand the characteristics of
the data.</p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Data Preprocessing</title>
        <p>
          Preprocessing involves extracting the relevant fields (text_en and label) from the dataset, and converting
the text data into a suitable format for the model by employing vectorization using CountVectorizer.
CountVectorizer is a class in scikit-learn [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ] that transforms a collection of text documents into a
numerical matrix of word or token counts. This class has a number of parameters that can also assist
in text preprocessing tasks, such as stop word removal, word count thresholds (i.e. maximums and
minimums), vocab limits, n-gram creation and more.
        </p>
        <p>The parameters used for the CountVectorizer tool are as follows:
• lowercase: Convert all characters to lowercase before tokenizing. Set to True.
• ngram_range: Range of n-values for diferent n-grams to be extracted. Set to (1, 1): only
unigrams.</p>
        <p>• analyzer: Level at which the input text will be tokenized. Set to ’word’.</p>
      </sec>
      <sec id="sec-3-3">
        <title>3.3. Proposed Model</title>
        <p>
          The first model which used for experimentation was Bidirectional Encoder Representations from
Transformers (BERT) uncased classifier [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ]. The embeddings obtained from the CountVectorizer tool
were used to train the BERT model. The model was trained separately for each language, and while
some languages yielded training F1-scores of around 0.60, others yielded significantly lower F1-scores.
The dataset contains a wide range of text lengths- this could have been a reason why the model exhibited
low F1-scores. Another reason for the unpredictable results of the BERT model could be batch size.
Batch size is the number of samples processed together in each training step. The batch size used in the
model turned out to be sub-optimal for the dataset and the hardware, and due to low computational
eficiency, experimentation with diferent batch sizes was not possible.
        </p>
        <p>
          Hence, a diferent approach was chosen. The second model that was used for experimentation was
logistic regression. Logistic regression is widely applied across various domains, often demonstrating
superior accuracy compared to classifiers such as random forest and K-nearest neighbor in numerous
empirical studies [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ]. A common application of logistic regression is in sentiment analysis tasks, where
it efectively categorizes text data into sentiment classes to classify emotions or opinions [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ].
        </p>
        <p>The initial approach involved combining the training datasets of all the languages and using this
aggregated dataset to train the logistic regression model. However, this method resulted in a notably
low average training F1-score. Subsequently, the model was trained separately for each language, and
upon analyzing the outcomes, it was found that this method provided a higher average training F1-score.
Hence, the latter method was used for subsequent analysis and evaluation.</p>
      </sec>
      <sec id="sec-3-4">
        <title>3.4. Methodology</title>
        <p>Logistic regression is a process of modeling the probability of a discrete outcome given an input variable.
The most common logistic regression models a binary outcome- something that can take two values
such as true/false, yes/no, and so on. Logistic regression is a useful analysis method for classification
problems, where the goal is to determine which category a new sample is most likely to belong to.</p>
        <p>The logistic function is represented by the following formula:</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Results</title>
      <p>The model was trained on speeches in around 25 diferent languages, which were translated into English
for the purpose of evaluation. In the training phase, the model achieved an average F1-score of 0.99 for
sub-task 1 (orientation), 0.98 for sub-task 2 (power).</p>
      <p>
        In the testing phase, the model achieved its highest F1-score of 0.83 for the Power task for the Greek
language, and 0.72 for the Orientation task for the Italian language. Additionally, the model’s F1-score
surpassed that of the baseline for several languages. On average, the metrics measured were 3 to 5
percent higher than those of the baseline model [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]. The results obtained were analyzed based on the
average performance metrics of precision, recall, and F1-scores, as illustrated in 1.
      </p>
      <p>One possible reason for the improvement in results over the baseline model could be the incorporation
of the hyperparameter C into the model. The value of C was set to 0.3, determined through random
search, where the model was trained and evaluated across various C values. This value of 0.3 yielded
the best performance. Therefore, proper regularization helped improve the model’s generalizability to
new, unseen data by reducing overfitting.</p>
      <p>The model was also analysed based on the parliamentary languages, and the top 4 highest performing
languages of the two sub-tasks have been listed in tables 2 and 3.</p>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion</title>
      <p>In conclusion, the research demonstrates the eficacy of logistic regression as a reliable technique for
binary classification in the nuanced domain of multilingual parliamentary speech analysis. Through
meticulous analysis of the dataset and model training, the proposed model demonstrated the utility of
the approach in interpreting key attributes of political discourse, namely party ideology and governing
status.</p>
      <p>The findings revealed compelling F1-scores, averaging at around 0.59 and 0.69 respectively for the
two tasks of identifying party ideology and governing status. This highlights the reliability of Logistic
Regression in capturing the inherent complexities of parliamentary debates, even in diverse linguistic
contexts.</p>
      <p>Looking ahead, further refinements and extensions of the approach hold promises in enhancing the
predictive capabilities and applicability across a broader spectrum of parliamentary contexts. This
includes exploring the integration of advanced language models (LLMs) such as BERT or GPT. By
leveraging LLMs, it is possible to delve deeper into the complexities of parliamentary discourse, uncovering
subtle semantic nuances and contextual cues that traditional methods may overlook. Additionally, the
plan is to investigate novel techniques for fine-tuning LLMs on parliamentary speech data, as well as
exploring ensemble methods that combine the strengths of multiple models. Through these endeavors,
the aim is to develop a more comprehensive understanding of the intricate dynamics of legislative
language and its implications for governance and policy making.</p>
      <p>Due to the lack of computational resources and time, the model was trained with same features for
both the sub-tasks. This work can be improved and extended by using diferent features for both the
sub-tasks.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>J.</given-names>
            <surname>Kiesel</surname>
          </string-name>
          , Ç. Çöltekin,
          <string-name>
            <given-names>M.</given-names>
            <surname>Heinrich</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Fröbe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Alshomary</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B. D.</given-names>
            <surname>Longueville</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Erjavec</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Handke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Kopp</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Ljubešić</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Meden</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Mirzakhmedova</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Morkevičius</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Reitis-Munstermann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Scharfbillig</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Stefanovitch</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Wachsmuth</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          , Overview of Touché 2024:
          <article-title>Argumentation Systems</article-title>
          , in: L.
          <string-name>
            <surname>Goeuriot</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Mulhem</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>Quénot</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Schwab</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Soulier</surname>
          </string-name>
          ,
          <string-name>
            <surname>G. M. D. Nunzio</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Galuščáková</surname>
          </string-name>
          ,
          <string-name>
            <surname>A. G. S. de Herrera</surname>
          </string-name>
          , G. Faggioli, N. Ferro (Eds.),
          <source>Experimental IR Meets Multilinguality, Multimodality, and Interaction. Proceedings of the Fifteenth International Conference of the CLEF Association (CLEF</source>
          <year>2024</year>
          ), Lecture Notes in Computer Science, Springer, Berlin Heidelberg New York,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>K.</given-names>
            <surname>Kato</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Purnomo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Cochrane</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Saqur</surname>
          </string-name>
          , L(u)pin
          <source>: LLM-based Political Ideology Nowcasting</source>
          ,
          <year>2024</year>
          . URL: https://arxiv.org/abs/2405.07320. arXiv:
          <volume>2405</volume>
          .
          <fpage>07320</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>G.</given-names>
            <surname>Glavaš</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Nanni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. P.</given-names>
            <surname>Ponzetto</surname>
          </string-name>
          ,
          <source>Computational Analysis of Political Texts: Bridging Research Eforts Across Communities</source>
          , in: P.
          <string-name>
            <surname>Nakov</surname>
            ,
            <given-names>A</given-names>
          </string-name>
          . Palmer (Eds.),
          <article-title>Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics: Tutorial Abstracts, Association for Computational Linguistics</article-title>
          , Florence, Italy,
          <year>2019</year>
          , pp.
          <fpage>18</fpage>
          -
          <lpage>23</lpage>
          . URL: https://aclanthology.org/P19-4004. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>P19</fpage>
          -4004.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>K.</given-names>
            <surname>Miok</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Hidalgo-Tenorio</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Osenova</surname>
          </string-name>
          , M.-
          <string-name>
            <given-names>A.</given-names>
            <surname>Benitez-Castro</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.</surname>
          </string-name>
          <article-title>Robnik-Sikonja, Multi-aspect Multilingual and Cross-lingual Parliamentary Speech Analysis</article-title>
          ,
          <year>2023</year>
          . URL: https://arxiv.org/abs/ 2207.01054. arXiv:
          <volume>2207</volume>
          .
          <fpage>01054</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>S. V. K.</given-names>
            <surname>Rohit</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Singh</surname>
          </string-name>
          ,
          <article-title>Analysis of Speeches in Indian Parliamentary Debates</article-title>
          , CoRR abs/
          <year>1808</year>
          .06834 (
          <year>2018</year>
          ). URL: http://arxiv.org/abs/
          <year>1808</year>
          .06834. arXiv:
          <year>1808</year>
          .06834.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>F.</given-names>
            <surname>Pedregosa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Varoquaux</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gramfort</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Michel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Thirion</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Grisel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Blondel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Prettenhofer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Weiss</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Dubourg</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Vanderplas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Passos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Cournapeau</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Brucher</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Perrot</surname>
          </string-name>
          , Édouard Duchesnay,
          <article-title>Scikit-learn: Machine Learning in Python</article-title>
          ,
          <source>Journal of Machine Learning Research</source>
          <volume>12</volume>
          (
          <year>2011</year>
          )
          <fpage>2825</fpage>
          -
          <lpage>2830</lpage>
          . URL: http://jmlr.org/papers/v12/pedregosa11a.html.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</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>
          , CoRR abs/
          <year>1810</year>
          .04805 (
          <year>2018</year>
          ). URL: http://arxiv.org/abs/
          <year>1810</year>
          .04805. arXiv:
          <year>1810</year>
          .04805.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>K.</given-names>
            <surname>Shah</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Patel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Sanghvi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Shah</surname>
          </string-name>
          ,
          <string-name>
            <surname>A Comparative</surname>
          </string-name>
          <article-title>Analysis of Logistic Regression, Random Forest and KNN Models for the Text Classification</article-title>
          ,
          <source>Augmented Human Research</source>
          <volume>5</volume>
          (
          <year>2020</year>
          )
          <fpage>1</fpage>
          -
          <lpage>16</lpage>
          . URL: https://doi.org/10.1007/s41133-020-00032-0. doi:
          <volume>10</volume>
          .1007/s41133-020-00032-0.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>A.</given-names>
            <surname>Kumar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Mangotra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ailawadi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Jain</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Arora</surname>
          </string-name>
          ,
          <article-title>Sentiment analysis on multilingual data: Hinglish</article-title>
          , in: A.
          <string-name>
            <surname>Swaroop</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          <string-name>
            <surname>Polkowski</surname>
            ,
            <given-names>S. D.</given-names>
          </string-name>
          <string-name>
            <surname>Correia</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          Virdee (Eds.),
          <source>Proceedings of Data Analytics and Management</source>
          , Springer Nature Singapore,
          <year>2024</year>
          , pp.
          <fpage>607</fpage>
          -
          <lpage>620</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>Çağrı</given-names>
            <surname>Çöltekin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Kopp</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Meden</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Morkevicius</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Ljubešić</surname>
          </string-name>
          , T. Erjavec,
          <article-title>Multilingual Power and Ideology Identification in the Parliament: a Reference Dataset</article-title>
          and
          <string-name>
            <given-names>Simple</given-names>
            <surname>Baselines</surname>
          </string-name>
          ,
          <year>2024</year>
          . arXiv:
          <volume>2405</volume>
          .
          <fpage>07363</fpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>