Datasets:
The viewer is disabled because this dataset repo requires arbitrary Python code execution. Please consider
removing the
loading script
and relying on
automated data support
(you can use
convert_to_parquet
from the datasets
library). If this is not possible, please
open a discussion
for direct help.
Dataset Card for Text-based NP Enrichment
Dataset Summary
Text-based NP Enrichment (TNE) is a natural language understanding (NLU) task, which focus on relations between noun phrases (NPs) that can be mediated via prepositions. The dataset contains 5,497 documents, annotated exhaustively with all possible links between the NPs in each document.
The main data comes from WikiNews, which is used for train/dev/test. We also collected an additional set of 509 documents to serve as out of distribution (OOD) data points, from the Book Corpus, IMDB reviews and Reddit.
Supported Tasks and Leaderboards
The data contain both the main data for the TNE task, as well as coreference resolution data. There are two leaderboards for the TNE data, one for the standard test set, and another one for the OOD test set:
Languages
The text in the dataset is in English, as spoken in the different domains we include. The associated BCP-47 code is en
.
Dataset Structure
Data Instances
The original files are in a jsonl format, containing a dictionary of a single document, in each line. Each document contain a different amount of labels, due to the different amount of NPs. The test and ood splits come without the annotated labels.
Data Fields
A document consists of:
id
: a unique identifier of a document, beginning withr
and followed by a numbertext
: the text of the document. The title and subtitles (if exists) are separated with two new lines. The paragraphs are separated by a single new line.tokens
: a list of string, containing the tokenized tokensnps
: a list of dictionaries, containing the following entries:text
: the text of the npstart_index
: an integer indicating the starting index in the textend_index
: an integer indicating the ending index in the textstart_token
: an integer indicating the first token of the np out of the tokenized tokensend_token
: an integer indicating the last token of the np out of the tokenized tokensid
: the id of the np
np_relations
: these are the relation labels of the document. It is a list of dictionaries, where each dictionary contains:anchor
: the id of the anchor npcomplement
: the id of the complement nppreposition
: the preposition that links between the anchor and the complement. This can take one out of 24 pre-defined preposition (23 + member(s)-of)complement_coref_cluster_id
: the coreference id, which the complement is part of.
coref
: the coreference labels. It contains a list of dictionaries, where each dictionary contains:id
: the id of the coreference clustermembers
: the ids of the nps members of such clusternp_type
: the type of cluster. It can be eitherstandard
: regular coreference clustertime/date/measurement
: a time / date / measurement np. These will be singletons.idiomatic
: an idiomatic expression
metadata
: metadata of the document. It contains the following:annotators
: a dictionary with anonymized annotators idcoref_worker
: the coreference worker idconsolidator_worker
: the consolidator worker idnp-relations_worker
: the np relations worker id
url
: the url where the document was taken from (not always existing)source
: the original file name where the document was taken from
Data Splits
The dataset is spread across four files, for the four different splits: train, dev, test and test_ood. Additional details on the data statistics can be found in the paper
Dataset Creation
Curation Rationale
TNE was build as a new task for language understanding, focusing on extracting relations between nouns, moderated by prepositions.
Source Data
Initial Data Collection and Normalization
[Needs More Information]
Who are the source language producers?
[Needs More Information]
Annotations
Annotation process
[Needs More Information]
Who are the annotators?
[Needs More Information]
Personal and Sensitive Information
[Needs More Information]
Considerations for Using the Data
Social Impact of Dataset
[Needs More Information]
Discussion of Biases
[Needs More Information]
Other Known Limitations
[Needs More Information]
Additional Information
Dataset Curators
The dataset was created by Yanai Elazar, Victoria Basmov, Yoav Goldberg, Reut Tsarfaty, during work done at Bar-Ilan University, and AI2.
Licensing Information
The data is released under the MIT license.
Citation Information
@article{tne,
author = {Elazar, Yanai and Basmov, Victoria and Goldberg, Yoav and Tsarfaty, Reut},
title = "{Text-based NP Enrichment}",
journal = {Transactions of the Association for Computational Linguistics},
year = {2022},
}
Contributions
Thanks to @yanaiela, who is also the first author of the paper, for adding this dataset.
- Downloads last month
- 76