Datasets:
cjvt
/

matejklemen commited on
Commit
b1d7d9f
1 Parent(s): 1084320

Specify that linguistic annotations are automatically (not manually) annotated!

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -91,9 +91,9 @@ The instance represents a correction in the document 'solar1' (`id_doc`), which
91
  - `doc_title`: a string containing the assigned document title;
92
  - `is_manually_validated`: a bool indicating whether the document in which the sentence appears was reviewed by a teacher;
93
  - `src_tokens`: words in the source sentence (`[]` if there is no source sentence);
94
- - `src_ling_annotations`: a dict containing the lemmas (key `"lemma"`), morphosyntactic descriptions using UD (key `"msd"`) and JOS/MULTEXT-East (key `"ana"`) specification, and named entity tags encoded using IOB2 (key `"ne_tag"`) for the source tokens;
95
  - `tgt_tokens`: words in the target sentence (`[]` if there is no target sentence);
96
- - `tgt_ling_annotations`: a dict containing the lemmas (key `"lemma"`), morphosyntactic descriptions using UD (key `"msd"`) and JOS/MULTEXT-East (key `"ana"`) specification, and named entity tags encoded using IOB2 (key `"ne_tag"`) for the target tokens;
97
  - `corrections`: a list of the corrections, with each correction represented with a dictionary, containing the indices of the source tokens involved (`idx_src`), target tokens involved (`idx_tgt`), and the categories of the corrections made (`corr_types`). Please note that there can be multiple assigned categories for one annotated correction, in which case `len(corr_types) > 1`.
98
 
99
 
 
91
  - `doc_title`: a string containing the assigned document title;
92
  - `is_manually_validated`: a bool indicating whether the document in which the sentence appears was reviewed by a teacher;
93
  - `src_tokens`: words in the source sentence (`[]` if there is no source sentence);
94
+ - `src_ling_annotations`: a dict containing the lemmas (key `"lemma"`), morphosyntactic descriptions using UD (key `"msd"`) and JOS/MULTEXT-East (key `"ana"`) specification, and named entity tags encoded using IOB2 (key `"ne_tag"`) for the source tokens (**automatically annotated**);
95
  - `tgt_tokens`: words in the target sentence (`[]` if there is no target sentence);
96
+ - `tgt_ling_annotations`: a dict containing the lemmas (key `"lemma"`), morphosyntactic descriptions using UD (key `"msd"`) and JOS/MULTEXT-East (key `"ana"`) specification, and named entity tags encoded using IOB2 (key `"ne_tag"`) for the target tokens (**automatically annotated**);
97
  - `corrections`: a list of the corrections, with each correction represented with a dictionary, containing the indices of the source tokens involved (`idx_src`), target tokens involved (`idx_tgt`), and the categories of the corrections made (`corr_types`). Please note that there can be multiple assigned categories for one annotated correction, in which case `len(corr_types) > 1`.
98
 
99