PersuasionTechniques-LREC2026
Collection
Fine-grained persuasion technique classification using custom small language models (SLMs) • 3 items • Updated
This model performs fine-grained persuasion technique classification for Russian. It is a custom Small Language Model (SLM) trained to identify and categorize specific rhetorical and persuasion strategies used in text.
The model is associated with the paper:
A Corpus of Persuasion Techniques in Slavic Languages
Submitted to LREC-COLING 2026
from transformers import pipeline
model = "SlavicNLP/lrec2026-persuasion-sentence-classifier-russian"
classifier = pipeline(task="text-classification", model=model, device=device, top_k=None)
texts = ["Но сегодня Россия экспортирует войну, смерть, угрозы."]
outputs = classifier(texts, padding=False, truncation=True, max_length=512)
print([output for output in outputs[0] if output["score"] > 0.5])
Expected output (formatted for readability):
[{'label': 'Loaded_Language', 'score': 0.805455207824707}]
Michał Marcińczuk (marcinczuk@gmail.com)
Base model
ai-forever/ruRoberta-large