Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
csv
Languages:
English
Size:
10K - 100K
License:
Update clef24_dataset_en.py
Browse files- clef24_dataset_en.py +9 -6
clef24_dataset_en.py
CHANGED
@@ -6,14 +6,17 @@ from datasets import SplitGenerator, Split, Features, Value
|
|
6 |
import os
|
7 |
|
8 |
_DESCRIPTION = """
|
9 |
-
This dataset includes
|
10 |
"""
|
11 |
|
12 |
_CITATION = """\
|
13 |
-
@
|
14 |
-
title
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
17 |
}
|
18 |
"""
|
19 |
|
@@ -37,7 +40,7 @@ class MultilangDataset(GeneratorBasedBuilder):
|
|
37 |
"class_label": Value("string"),
|
38 |
}),
|
39 |
supervised_keys=("Text", "class_label"),
|
40 |
-
homepage="https://
|
41 |
citation=_CITATION,
|
42 |
license=_LICENSE,
|
43 |
)
|
|
|
6 |
import os
|
7 |
|
8 |
_DESCRIPTION = """
|
9 |
+
This dataset includes English data for CLEF 2024 CheckThat! Lab task1.
|
10 |
"""
|
11 |
|
12 |
_CITATION = """\
|
13 |
+
@inproceedings{barron2024clef,
|
14 |
+
title={The CLEF-2024 CheckThat! Lab: Check-Worthiness, Subjectivity, Persuasion, Roles, Authorities, and Adversarial Robustness},
|
15 |
+
author={Barr{\'o}n-Cede{\~n}o, Alberto and Alam, Firoj and Chakraborty, Tanmoy and Elsayed, Tamer and Nakov, Preslav and Przyby{\l}a, Piotr and Stru{\ss}, Julia Maria and Haouari, Fatima and Hasanain, Maram and Ruggeri, Federico and others},
|
16 |
+
booktitle={European Conference on Information Retrieval},
|
17 |
+
pages={449--458},
|
18 |
+
year={2024},
|
19 |
+
organization={Springer}
|
20 |
}
|
21 |
"""
|
22 |
|
|
|
40 |
"class_label": Value("string"),
|
41 |
}),
|
42 |
supervised_keys=("Text", "class_label"),
|
43 |
+
homepage="https://gitlab.com/checkthat_lab/clef2024-checkthat-lab/-/tree/main/task1",
|
44 |
citation=_CITATION,
|
45 |
license=_LICENSE,
|
46 |
)
|