File size: 2,077 Bytes
cf9ee25
060249c
 
 
 
 
 
 
 
cf9ee25
060249c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---

license: other
base_model: roberta-base
tags:
- text-classification
- fallacy-classification
- fairness
- FallacyHunter
pipeline_tag: text-classification
---


# 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



0. ad hominem

1. ad populum

2. appeal to emotion

3. circular reasoning

4. equivocation

5. fallacy of credibility

6. fallacy of extension

7. fallacy of logic

8. fallacy of relevance

9. false causality

10. false dilemma

11. faulty generalization

12. intentional

13. no_fallacy

## Files

This repository folder contains the full local checkpoint used for upload:

- `config.json`
- `label_map.json`
- `model.safetensors`
- `tokenizer.json`
- `tokenizer_config.json`

## Example

```python

from transformers import pipeline



classifier = pipeline("text-classification", model="<username>/<repo_name>")

classifier("That argument ignores the evidence and attacks the person instead.")

```