Edit model card

You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Our models are intended for academic use only. If you are not affiliated with an academic institution, please provide a rationale for using our models.
If you use our models for your work or research, please cite this paper: Sebők, M., Máté, Á., Ring, O., Kovács, V., & Lehoczki, R. (2024). Leveraging Open Large Language Models for Multilingual Policy Topic Classification: The Babel Machine Approach. Social Science Computer Review, 0(0). https://doi.org/10.1177/08944393241259434

Log in or Sign Up to review the conditions and access this model content.

xlm-roberta-large-danish-parlspeech-cap-v3

Model description

An xlm-roberta-large model fine-tuned on danish training data containing parliamentary speeches (oral questions, interpellations, bill debates, other plenary speeches, urgent questions) labeled with major topic codes from the Comparative Agendas Project.

How to use the model

from transformers import AutoTokenizer, pipeline

tokenizer = AutoTokenizer.from_pretrained("xlm-roberta-large")
pipe = pipeline(
    model="poltextlab/xlm-roberta-large-danish-parlspeech-cap-v3",
    task="text-classification",
    tokenizer=tokenizer,
    use_fast=False,
    token="<your_hf_read_only_token>"
)

text = "We will place an immediate 6-month halt on the finance driven closure of beds and wards, and set up an independent audit of needs and facilities."
pipe(text)

Gated access

Due to the gated access, you must pass the token parameter when loading the model. In earlier versions of the Transformers package, you may need to use the use_auth_token parameter instead.

Model performance

The model was evaluated on a test set of 44159 examples.
Model accuracy is 0.94.

label precision recall f1-score support
0 0.91 0.92 0.92 2310
1 0.9 0.9 0.9 1285
2 0.98 0.96 0.97 3400
3 0.95 0.95 0.95 1972
4 0.92 0.93 0.93 2679
5 0.96 0.96 0.96 2778
6 0.94 0.94 0.94 2458
7 0.96 0.94 0.95 1173
8 0.95 0.96 0.96 1948
9 0.95 0.97 0.96 3276
10 0.94 0.95 0.94 3224
11 0.92 0.93 0.93 2270
12 0.94 0.93 0.93 1510
13 0.89 0.89 0.89 1759
14 0.96 0.95 0.95 1941
15 0.95 0.93 0.94 1343
16 0.89 0.9 0.9 402
17 0.95 0.94 0.95 3337
18 0.92 0.92 0.92 3484
19 0.95 0.95 0.95 834
20 0.93 0.91 0.92 776
macro avg 0.94 0.93 0.94 44159
weighted avg 0.94 0.94 0.94 44159

Fine-tuning procedure

This model was fine-tuned with the following key hyperparameters:

  • Number of Training Epochs: 10
  • Batch Size: 8
  • Learning Rate: 5e-06
  • Early Stopping: enabled with a patience of 2 epochs

Inference platform

This model is used by the CAP Babel Machine, an open-source and free natural language processing tool, designed to simplify and speed up projects for comparative research.

Cooperation

Model performance can be significantly improved by extending our training sets. We appreciate every submission of CAP-coded corpora (of any domain and language) at poltextlab{at}poltextlab{dot}com or by using the CAP Babel Machine.

Reference

Sebők, M., Máté, Á., Ring, O., Kovács, V., & Lehoczki, R. (2024). Leveraging Open Large Language Models for Multilingual Policy Topic Classification: The Babel Machine Approach. Social Science Computer Review, 0(0). https://doi.org/10.1177/08944393241259434

Debugging and issues

This architecture uses the sentencepiece tokenizer. In order to use the model before transformers==4.27 you need to install it manually.

If you encounter a RuntimeError when loading the model using the from_pretrained() method, adding ignore_mismatched_sizes=True should solve the issue.

Downloads last month
1
Inference Examples
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social visibility and check back later, or deploy to Inference Endpoints (dedicated) instead.

Collection including poltextlab/xlm-roberta-large-danish-parlspeech-cap-v3