Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
---
|
| 4 |
+
# Argument Scheme Classification Dataset
|
| 5 |
+
|
| 6 |
+
This dataset contains annotated arguments labeled with one of **7 argumentation schemes**. It is intended for training and evaluating argument classification models.
|
| 7 |
+
|
| 8 |
+
## 🧠 Task
|
| 9 |
+
|
| 10 |
+
The goal is to classify a given **argument** into one of the following **7 argumentation schemes**:
|
| 11 |
+
|
| 12 |
+
- **AV**: Argument from Values
|
| 13 |
+
- **PR**: Argument from Practical Reasoning
|
| 14 |
+
- **AC**: Argument from Consequences
|
| 15 |
+
- **CO**: Argument from Commitments
|
| 16 |
+
- **AH**: Ad Hominem
|
| 17 |
+
- **VV**: Victimization
|
| 18 |
+
- **AS**: Argument from Sign
|
| 19 |
+
|
| 20 |
+
## 📁 Dataset Structure
|
| 21 |
+
|
| 22 |
+
The dataset is split into two parts:
|
| 23 |
+
|
| 24 |
+
- `train.csv` – 700 labeled examples
|
| 25 |
+
- `validation.csv` – 175 labeled examples
|
| 26 |
+
|
| 27 |
+
Each file contains:
|
| 28 |
+
|
| 29 |
+
| Column | Description |
|
| 30 |
+
|-----------|---------------------------------|
|
| 31 |
+
| Argument | The input argument as free text |
|
| 32 |
+
| Label | One of the 7 argument schemes |
|
| 33 |
+
|
| 34 |
+
## 📊 Format Example
|
| 35 |
+
|
| 36 |
+
```csv
|
| 37 |
+
Argument,Label
|
| 38 |
+
"The decree I signed, which converts environmental fines into investments, was signed by me...",AC
|
| 39 |
+
"Responsible tourism brings with it awareness of the ecosystem and promotes sustainability.",AV
|