ArneBinder commited on
Commit
e7d197f
1 Parent(s): d41061f

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -0
README.md ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # DialAM-2024
2
+
3
+ This is the training data used in the DialAM-2024 shared task. See http://dialam.arg.tech/ for further information.
4
+
5
+ ## Usage
6
+
7
+ ```python
8
+ from datasets import load_dataset
9
+
10
+ ds = load_dataset("ArneBinder/dialam_2024")
11
+
12
+ # the dataset consists of a single train split
13
+ assert set(ds) == {"train"}
14
+
15
+ # which has 1381 entries
16
+ assert len(ds["train"]) == 1381
17
+
18
+ ```