vsty commited on
Commit
dbad790
·
verified ·
1 Parent(s): 5567cd3

Update clef24_dataset_en.py

Browse files
Files changed (1) hide show
  1. 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 multilingual data for language classification tasks across several languages.
10
  """
11
 
12
  _CITATION = """\
13
- @InProceedings{huggingface:multilang_dataset,
14
- title = {Multilingual Text Dataset},
15
- authors = {Your Name},
16
- year = {2024}
 
 
 
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://www.example.com",
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
  )