--- annotations_creators: - expert-generated - crowdsourced language: - nl language_creators: - machine-generated license: - cc-by-2.0 multilinguality: - monolingual pretty_name: Contentious Contexts Corpus size_categories: - 1K n else "not_contentious" if n > c else "tied" ``` ## Loading ```python from datasets import load_dataset ds = load_dataset("biglam/contentious_contexts", split="train") row = ds[0] row["text"] # the newspaper extract row["target"] # the flagged compound, bolded in `text` row["annotator_responses_dutch"] # [{'id': ..., 'response': 'Niet omstreden'}, ...] row["annotator_responses_english"] # the same responses, translated ``` `Metadata.csv` in the [source repo](https://github.com/cultural-ai/ConConCor) adds newspaper title, date and place for 2,719 of the 2,720 extracts; it is not carried here. ## Licence CC-BY. The source newspaper images and OCR come from the Europeana Newspaper collection as provided by the KB, National Library of the Netherlands. ## Citation ```bibtex @inproceedings{brate2021capturing, author = {Brate, Ryan and Nesterov, Andrei and Vogelmann, Valentin and van Ossenbruggen, Jacco and Hollink, Laura and van Erp, Marieke}, title = {Capturing Contentiousness: Constructing the Contentious Terms in Context Corpus}, booktitle = {Proceedings of the 11th on Knowledge Capture Conference (K-CAP '21)}, year = {2021}, pages = {17--24}, doi = {10.1145/3460210.3493553} } @misc{ContentiousContextsCorpus2021, author = {Cultural AI}, title = {Contentious Contexts Corpus}, year = {2021}, publisher = {GitHub}, howpublished = {\url{https://github.com/cultural-ai/ConConCor}}, } ```