ianporada commited on
Commit
42237e4
1 Parent(s): 4d6f5ea

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -1
README.md CHANGED
@@ -2,7 +2,19 @@
2
  license: unknown
3
  ---
4
 
5
- The original PreCo `.jsonl` files.
 
 
 
 
 
 
 
 
 
 
 
 
6
 
7
  ```
8
  @inproceedings{chen-etal-2018-preco,
 
2
  license: unknown
3
  ---
4
 
5
+ The original PreCo `.jsonl` files from https://preschool-lab.github.io/PreCo/
6
+
7
+ ## What is PreCo?
8
+ PreCo is a large-scale English dataset for coreference resolution. The dataset is designed to embody the core challenges in coreference, such as entity representation, by alleviating the challenge of low overlap between training and test sets and enabling separated analysis of mention detection and mention clustering. To strengthen the training-test overlap, we collect a large corpus of 38K documents and 12.5M words which are mostly from the vocabulary of English-speaking preschoolers. Experiments show that with higher training-test overlap, error analysis on PreCo is more efficient than the one on OntoNotes, a popular existing dataset. Furthermore, we annotate singleton mentions making it possible for the first time to quantify the influence that a mention detector makes on coreference resolution performance.
9
+
10
+ The dataset is available for research purposes.
11
+
12
+ ## Data Format
13
+ There are 2 JSON line files in the downloaded data, for training and development sets. We are still in the process of deciding how to use the test set, e.g., to publish it as is, or to hold an online competition. In the files, each line is a JSON string that encodes a document. The JSON object has the following fields:
14
+
15
+ "id": a string identifier of the document.
16
+ "sentences": the text. It is a list of sentences. Each sentence is a list of tokens. Each token is a string, which can be a word or a punctuation mark. A sentence that contains only one token of space is used to separate paragraphs in the text.
17
+ "mention_clusters": the mention clusters of the document. It is a list of mention clusters. Each mention cluster is a list of mentions. Each mention is a tuple of integers [sentence_idx, begin_idx, end_idx]. Sentence_idx is the index of the sentence of the mention. Begin_idx is the index of the first token of the mention in the sentence. End_index is the index of the last token of the mention in the sentence plus one. All indices are zero-based.
18
 
19
  ```
20
  @inproceedings{chen-etal-2018-preco,