dialam2024 / README.md
ArneBinder's picture
Create README.md
e7d197f verified
|
raw
history blame
369 Bytes

DialAM-2024

This is the training data used in the DialAM-2024 shared task. See http://dialam.arg.tech/ for further information.

Usage

from datasets import load_dataset

ds = load_dataset("ArneBinder/dialam_2024")

# the dataset consists of a single train split
assert set(ds) == {"train"}

# which has 1381 entries
assert len(ds["train"]) == 1381