poltextlab / xlm-roberta-large-media-cap-v3

huggingface.co
Total runs: 32
24-hour runs: 0
7-day runs: 0
30-day runs: 3
Model's Last Updated: August 24 2026
text-classification

Introduction of xlm-roberta-large-media-cap-v3

Model Details of xlm-roberta-large-media-cap-v3

xlm-roberta-large-media-cap-v3

Model description

An xlm-roberta-large model finetuned on multilingual training data containing texts of the media domain labelled with major topic codes from the Comparative Agendas Project .

How to use the model
Loading and tokenizing input data
import pandas as pd
import numpy as np
from datasets import Dataset
from transformers import (AutoModelForSequenceClassification, AutoTokenizer, 
                          Trainer, TrainingArguments)

CAP_NUM_DICT = {0: '1', 1: '2', 2: '3', 3: '4', 4: '5', 5: '6', 
6: '7', 7: '8', 8: '9', 9: '10', 10: '12', 11: '13', 12: '14', 
13: '15', 14: '16', 15: '17', 16: '18', 17: '19', 18: '20', 19: 
'21', 20: '23', 21: '999'}

tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-large')
num_labels = len(CAP_NUM_DICT)

def tokenize_dataset(data : pd.DataFrame):
    tokenized = tokenizer(data["text"],
                          max_length=MAXLEN,
                          truncation=True,
                          padding="max_length")
    return tokenized

hg_data = Dataset.from_pandas(data)
dataset = hg_data.map(tokenize_dataset, batched=True, remove_columns=hg_data.column_names)
Inference using the Trainer class
model = AutoModelForSequenceClassification.from_pretrained('poltextlab/xlm-roberta-large-media-cap-v3',
                                                           num_labels=22,
                                                           problem_type="multi_label_classification",
                                                           ignore_mismatched_sizes=True
                                                           )

training_args = TrainingArguments(
    output_dir='.',
    per_device_train_batch_size=8,
    per_device_eval_batch_size=8
)

trainer = Trainer(
    model=model,
    args=training_args
)

probs = trainer.predict(test_dataset=dataset).predictions
predicted = pd.DataFrame(np.argmax(probs, axis=1)).replace({0: CAP_NUM_DICT}).rename(
    columns={0: 'predicted'}).reset_index(drop=True)
Fine-tuning procedure

xlm-roberta-large-media-cap-v3 was fine-tuned using the Hugging Face Trainer class with the following hyperparameters:

training_args = TrainingArguments(
    output_dir=f"../model/{model_dir}/tmp/",
    logging_dir=f"../logs/{model_dir}/",
    logging_strategy='epoch',
    num_train_epochs=10,
    per_device_train_batch_size=8,
    per_device_eval_batch_size=8,
    learning_rate=5e-06,
    seed=42,
    save_strategy='epoch',
    evaluation_strategy='epoch',
    save_total_limit=1,
    load_best_model_at_end=True
)

We also incorporated an EarlyStoppingCallback in the process with a patience of 2 epochs.

Model performance

The model was evaluated on a test set of 74893 examples (10% of the available data).
Model accuracy is 0.78 .

label precision recall f1-score support
0 0.73 0.75 0.74 4282
1 0.59 0.69 0.64 2438
2 0.82 0.85 0.84 3590
3 0.7 0.76 0.73 1016
4 0.73 0.67 0.7 1748
5 0.86 0.84 0.85 2662
6 0.81 0.76 0.78 1650
7 0.8 0.82 0.81 1776
8 0.75 0.76 0.75 735
9 0.79 0.86 0.83 3043
10 0.8 0.76 0.78 8480
11 0.69 0.66 0.68 921
12 0.69 0.68 0.68 1319
13 0.78 0.73 0.75 4369
14 0.76 0.75 0.76 5110
15 0.73 0.78 0.75 1751
16 0.78 0.57 0.66 750
17 0.79 0.81 0.8 10249
18 0.79 0.81 0.8 12452
19 0.64 0.71 0.67 710
20 0.79 0.72 0.75 2799
21 0.85 0.84 0.85 3043
macro avg 0.76 0.75 0.75 74893
weighted avg 0.78 0.78 0.78 74893
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 .

Debugging and issues

This architecture uses the sentencepiece tokenizer. In order to run 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.

Runs of poltextlab xlm-roberta-large-media-cap-v3 on huggingface.co

32
Total runs
0
24-hour runs
0
3-day runs
0
7-day runs
3
30-day runs

More Information About xlm-roberta-large-media-cap-v3 huggingface.co Model

More xlm-roberta-large-media-cap-v3 license Visit here:

https://choosealicense.com/licenses/cc-by-4.0

xlm-roberta-large-media-cap-v3 huggingface.co

xlm-roberta-large-media-cap-v3 huggingface.co is an AI model on huggingface.co that provides xlm-roberta-large-media-cap-v3's model effect (), which can be used instantly with this poltextlab xlm-roberta-large-media-cap-v3 model. huggingface.co supports a free trial of the xlm-roberta-large-media-cap-v3 model, and also provides paid use of the xlm-roberta-large-media-cap-v3. Support call xlm-roberta-large-media-cap-v3 model through api, including Node.js, Python, http.

xlm-roberta-large-media-cap-v3 huggingface.co Url

https://huggingface.co/poltextlab/xlm-roberta-large-media-cap-v3

poltextlab xlm-roberta-large-media-cap-v3 online free

xlm-roberta-large-media-cap-v3 huggingface.co is an online trial and call api platform, which integrates xlm-roberta-large-media-cap-v3's modeling effects, including api services, and provides a free online trial of xlm-roberta-large-media-cap-v3, you can try xlm-roberta-large-media-cap-v3 online for free by clicking the link below.

poltextlab xlm-roberta-large-media-cap-v3 online free url in huggingface.co:

https://huggingface.co/poltextlab/xlm-roberta-large-media-cap-v3

xlm-roberta-large-media-cap-v3 install

xlm-roberta-large-media-cap-v3 is an open source model from GitHub that offers a free installation service, and any user can find xlm-roberta-large-media-cap-v3 on GitHub to install. At the same time, huggingface.co provides the effect of xlm-roberta-large-media-cap-v3 install, users can directly use xlm-roberta-large-media-cap-v3 installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

xlm-roberta-large-media-cap-v3 install url in huggingface.co:

https://huggingface.co/poltextlab/xlm-roberta-large-media-cap-v3

Url of xlm-roberta-large-media-cap-v3

xlm-roberta-large-media-cap-v3 huggingface.co Url

Provider of xlm-roberta-large-media-cap-v3 huggingface.co

poltextlab
ORGANIZATIONS

Other API from poltextlab

huggingface.co

Total runs: 33
Run Growth: 6
Growth Rate: 18.18%
Updated:September 05 2026