FallacyHunter RoBERTa Fallacy Classifier
This model is a RoBERTa-based fallacy classifier fine-tuned for the FallacyHunter project. It predicts one of 14 fallacy labels for a given argument or statement.
Model Details
- Base model: RoBERTa checkpoint
- Task: fallacy classification
- Output labels: ad hominem, ad populum, appeal to emotion, circular reasoning, equivocation, fallacy of credibility, fallacy of extension, fallacy of logic, fallacy of relevance, false causality, false dilemma, faulty generalization, intentional, no_fallacy
- Repository artifact: local checkpoint directory used for upload
Intended Use
Use this model to label argumentative text for FallacyHunter experiments and related analysis. It is suited for offline evaluation, fairness testing, and research workflows.
Limitations
- The model is trained on the FallacyHunter label set and should not be treated as a general-purpose reasoning system.
- Predictions are only as reliable as the text distribution seen during fine-tuning.
- Multi-label style outputs should be interpreted according to the checkpoint configuration and downstream decoding logic.
Labels
- ad hominem
- ad populum
- appeal to emotion
- circular reasoning
- equivocation
- fallacy of credibility
- fallacy of extension
- fallacy of logic
- fallacy of relevance
- false causality
- false dilemma
- faulty generalization
- intentional
- no_fallacy
Files
This repository folder contains the full local checkpoint used for upload:
config.jsonlabel_map.jsonmodel.safetensorstokenizer.jsontokenizer_config.json
Example
from transformers import pipeline
classifier = pipeline("text-classification", model="<username>/<repo_name>")
classifier("That argument ignores the evidence and attacks the person instead.")
- Downloads last month
- 13