albertvillanova HF staff commited on
Commit
6a87266
1 Parent(s): 0b45000

Update citation, paper and data metadata

Browse files
Files changed (2) hide show
  1. README.md +21 -5
  2. hyperpartisan_news_detection.py +19 -4
README.md CHANGED
@@ -101,7 +101,8 @@ dataset_info:
101
 
102
  - **Homepage:** [https://pan.webis.de/semeval19/semeval19-web/](https://pan.webis.de/semeval19/semeval19-web/)
103
  - **Repository:** https://github.com/pan-webis-de/pan-code/tree/master/semeval19
104
- - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
105
  - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
106
  - **Size of downloaded dataset files:** 1.00 GB
107
  - **Size of the generated dataset:** 5.61 GB
@@ -257,10 +258,25 @@ The collection (including labels) are licensed under a [Creative Commons Attribu
257
  ### Citation Information
258
 
259
  ```
260
- @article{kiesel2019data,
261
- title={Data for pan at semeval 2019 task 4: Hyperpartisan news detection},
262
- author={Kiesel, Johannes and Mestre, Maria and Shukla, Rishabh and Vincent, Emmanuel and Corney, David and Adineh, Payam and Stein, Benno and Potthast, Martin},
263
- year={2019}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
264
  }
265
  ```
266
 
 
101
 
102
  - **Homepage:** [https://pan.webis.de/semeval19/semeval19-web/](https://pan.webis.de/semeval19/semeval19-web/)
103
  - **Repository:** https://github.com/pan-webis-de/pan-code/tree/master/semeval19
104
+ - **Paper:** https://aclanthology.org/S19-2145
105
+ - **Data:** https://doi.org/10.5281/zenodo.1489920
106
  - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
107
  - **Size of downloaded dataset files:** 1.00 GB
108
  - **Size of the generated dataset:** 5.61 GB
 
258
  ### Citation Information
259
 
260
  ```
261
+ @inproceedings{kiesel-etal-2019-semeval,
262
+ title = "{S}em{E}val-2019 Task 4: Hyperpartisan News Detection",
263
+ author = "Kiesel, Johannes and
264
+ Mestre, Maria and
265
+ Shukla, Rishabh and
266
+ Vincent, Emmanuel and
267
+ Adineh, Payam and
268
+ Corney, David and
269
+ Stein, Benno and
270
+ Potthast, Martin",
271
+ booktitle = "Proceedings of the 13th International Workshop on Semantic Evaluation",
272
+ month = jun,
273
+ year = "2019",
274
+ address = "Minneapolis, Minnesota, USA",
275
+ publisher = "Association for Computational Linguistics",
276
+ url = "https://aclanthology.org/S19-2145",
277
+ doi = "10.18653/v1/S19-2145",
278
+ pages = "829--839",
279
+ abstract = "Hyperpartisan news is news that takes an extreme left-wing or right-wing standpoint. If one is able to reliably compute this meta information, news articles may be automatically tagged, this way encouraging or discouraging readers to consume the text. It is an open question how successfully hyperpartisan news detection can be automated, and the goal of this SemEval task was to shed light on the state of the art. We developed new resources for this purpose, including a manually labeled dataset with 1,273 articles, and a second dataset with 754,000 articles, labeled via distant supervision. The interest of the research community in our task exceeded all our expectations: The datasets were downloaded about 1,000 times, 322 teams registered, of which 184 configured a virtual machine on our shared task cloud service TIRA, of which in turn 42 teams submitted a valid run. The best team achieved an accuracy of 0.822 on a balanced sample (yes : no hyperpartisan) drawn from the manually tagged corpus; an ensemble of the submitted systems increased the accuracy by 0.048.",
280
  }
281
  ```
282
 
hyperpartisan_news_detection.py CHANGED
@@ -25,10 +25,25 @@ import datasets
25
 
26
 
27
  _CITATION = """\
28
- @article{kiesel2019data,
29
- title={Data for pan at semeval 2019 task 4: Hyperpartisan news detection},
30
- author={Kiesel, Johannes and Mestre, Maria and Shukla, Rishabh and Vincent, Emmanuel and Corney, David and Adineh, Payam and Stein, Benno and Potthast, Martin},
31
- year={2019}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  }
33
  """
34
 
 
25
 
26
 
27
  _CITATION = """\
28
+ @inproceedings{kiesel-etal-2019-semeval,
29
+ title = "{S}em{E}val-2019 Task 4: Hyperpartisan News Detection",
30
+ author = "Kiesel, Johannes and
31
+ Mestre, Maria and
32
+ Shukla, Rishabh and
33
+ Vincent, Emmanuel and
34
+ Adineh, Payam and
35
+ Corney, David and
36
+ Stein, Benno and
37
+ Potthast, Martin",
38
+ booktitle = "Proceedings of the 13th International Workshop on Semantic Evaluation",
39
+ month = jun,
40
+ year = "2019",
41
+ address = "Minneapolis, Minnesota, USA",
42
+ publisher = "Association for Computational Linguistics",
43
+ url = "https://aclanthology.org/S19-2145",
44
+ doi = "10.18653/v1/S19-2145",
45
+ pages = "829--839",
46
+ abstract = "Hyperpartisan news is news that takes an extreme left-wing or right-wing standpoint. If one is able to reliably compute this meta information, news articles may be automatically tagged, this way encouraging or discouraging readers to consume the text. It is an open question how successfully hyperpartisan news detection can be automated, and the goal of this SemEval task was to shed light on the state of the art. We developed new resources for this purpose, including a manually labeled dataset with 1,273 articles, and a second dataset with 754,000 articles, labeled via distant supervision. The interest of the research community in our task exceeded all our expectations: The datasets were downloaded about 1,000 times, 322 teams registered, of which 184 configured a virtual machine on our shared task cloud service TIRA, of which in turn 42 teams submitted a valid run. The best team achieved an accuracy of 0.822 on a balanced sample (yes : no hyperpartisan) drawn from the manually tagged corpus; an ensemble of the submitted systems increased the accuracy by 0.048.",
47
  }
48
  """
49