File size: 368 Bytes
e7d197f e28b3aa e7d197f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# DialAM-2024
This is the training data used in the DialAM-2024 shared task. See http://dialam.arg.tech/ for further information.
## Usage
```python
from datasets import load_dataset
ds = load_dataset("ArneBinder/dialam2024")
# the dataset consists of a single train split
assert set(ds) == {"train"}
# which has 1381 entries
assert len(ds["train"]) == 1381
``` |