==================================================== CoNLL-2014 Shared Task: Grammatical Error Correction Description of Preprocessed NUCLE Data Set 7 April 2014 Version 3.2 ==================================================== 1. General ========== This README file describes a preprocessed version of the NUS Corpus of Learner English (NUCLE). For information about NUCLE, please refer to the NUCLE README file. For information about the CoNLL-2014 shared task, please refer to the shared task website. The preprocessed data set, following earlier CoNLL shared tasks, provides syntactic information for the raw texts in NUCLE. For each sentence, the part of speech tags, dependency parse tree, and constituent parse tree are encoded in a column format. In NUCLE, annotations are made at the character level, which means both the start offset and the end offset of an error annotation are character positions in the corresponding paragraph. In this preprocessed version, annotations are made at the token level, which means the start offset and the end offset are indexes of tokens in the corresponding sentence. This README is updated on 4 August 2014. 2. Files ======== Two files are to be generated: conll14st-preprocessed.conll conll14st-preprocessed.conll.ann conll14st-preprocessed.conll contains the preprocessed data in CoNLL-style column format. This file is not included in this distribution due to the size. conll14st-preprocessed.conll.ann contains token-level annotations. 3. Preprocessing systems ======================== The NUCLE corpus is preprocessed with the following steps to generate this preprocessed data set: a). sentence splitting, using nltk punkt [1]. Note: the version used to generate the files is before the fixing of issue 514 b). word tokenization, using nltk word_tokenize [1]. c). POS tags, dependency parse trees, and constituent parse trees, using the Stanford parser [2]. d). projecting character-level annotation to token-level annotation. Results from (a-c) are in conll14st-preprocessed.conll. The projected annotations (d) are included in conll14st-preprocessed.conll.ann. 4. Data format ============== Here is an example sentence in conll14st-preprocessed.conll: NID PID SID TOKENID TOKEN POS DPHEAD DPREL SYNT 829 1 2 0 This DT 1 det (ROOT(S(NP* 829 1 2 1 will NN 7 nsubj *) 829 1 2 2 , , - - * 829 1 2 3 if IN 4 mark (SBAR* 829 1 2 4 not RB 7 dep (FRAG* 829 1 2 5 already RB 4 dep (ADVP*))) 829 1 2 6 , , - - * 829 1 2 7 caused VBD -1 root (VP* 829 1 2 8 problems NNS 7 dobj (NP*) 829 1 2 9 as IN 11 mark (SBAR* 829 1 2 10 there EX 11 expl (S(NP*) 829 1 2 11 are VBP 7 advcl (VP* 829 1 2 12 very RB 13 advmod (NP(NP(ADJP* 829 1 2 13 limited VBN 14 amod *) 829 1 2 14 spaces NNS 11 nsubj *) 829 1 2 15 for IN 14 prep (PP* 829 1 2 16 us PRP 15 pobj (NP*))))))) 829 1 2 17 . . - - *)) The columns represent the following: Column Type Description 0 NID Document id of the sentence, equals to "nid" in NUCLE. 1 PID Paragraph index of the sentence, according to the paragraphing in NUCLE (
). 2 SID Sentence index in paragraph, each sentence has its own index starting from 0. 3 TOKENID Token index in the sentence, starting from 0. 4 TOKEN Word/token. 5 POS Part of speech tag. 6 DPHEAD Index of parent in dependency tree. 7 DPREL Dependency relation with parent. 8 SYNT Constituent tree. The constituent tree can be recovered as follows: (a) Replacing "*" in this column with a string "(pos word)", where pos is the value of column 5, word is the value of column 4. (b) Concatenating all the strings in (a) gives the bracketing structure of the constituent parse tree. ------------------------------------------------------------------------ Here is the corresponding token-level annotation for the above sentence (in conll14st-preprocessed.conll.ann):