Skip to main content

UA-GEC: Grammatical Error Correction and Fluency Corpus for the Ukrainian language

Project description

Українською

UA-GEC: Grammatical Error Correction and Fluency Corpus for the Ukrainian Language

This repository contains UA-GEC data and an accompanying Python library.

What's new

  • November 2022: Version 2.0 released, featuring more data and detailed annotations.
  • January 2021: Initial release.

See CHANGELOG.md for detailed updates.

Data

All corpus data and metadata stay under the ./data. It has two subfolders for gec-fluency and gec-only corpus versions

Both corpus versions contain two subfolders train and test splits with different data representations:

./data/{gec-fluency,gec-only}/{train,test}/annotated stores documents in the annotated format

./data/{gec-fluency,gec-only}/{train,test}/source and ./data/{gec-fluency,gec-only}/{train,test}/target store the original and the corrected versions of documents. Text files in these directories are plain text with no annotation markup. These files were produced from the annotated data and are, in some way, redundant. We keep them because this format is convenient in some use cases.

Metadata

./data/metadata.csv stores per-document metadata. It's a CSV file with the following fields:

  • id (str): document identifier;
  • author_id (str): document author identifier;
  • is_native (int): 1 if the author is native-speaker, 0 otherwise;
  • region (str): the author's region of birth. A special value "Інше" is used both for authors who were born outside Ukraine and authors who preferred not to specify their region.
  • gender (str): could be "Жіноча" (female), "Чоловіча" (male), or "Інша" (other);
  • occupation (str): one of "Технічна", "Гуманітарна", "Природнича", "Інша";
  • submission_type (str): one of "essay", "translation", or "text_donation";
  • source_language (str): for submissions of the "translation" type, this field indicates the source language of the translated text. Possible values are "de", "en", "fr", "ru", and "pl";
  • annotator_id (int): ID of the annotator who corrected the document;
  • partition (str): one of "test" or "train";
  • is_sensitive (int): 1 if the document contains profanity or offensive language.

Annotation format

Annotated files are text files that use the following in-text annotation format: {error=>edit:::error_type=Tag}, where error and edit stand for a text item before and after correction respectively, and Tag denotes an error category and an error subcategory in case of Grammar- and Fluency-related errors.

Example of an annotated sentence:

    I {likes=>like:::error_type=G/Number} turtles.

Below you can see a list of error types presented in the corpus:

  • Spelling: spelling errors;
  • Punctuation: punctuation errors.

Grammar-related errors:

  • G/Case: incorrect usage of case of any notional part of speech;
  • G/Gender: incorrect usage of gender of any notional part of speech;
  • G/Number: incorrect usage of number of any notional part of speech;
  • G/Aspect: incorrect usage of verb aspect;
  • G/Tense: incorrect usage of verb tense;
  • G/VerbVoice: incorrect usage of verb voice;
  • G/PartVoice: incorrect usage of participle voice;
  • G/VerbAForm: incorrect usage of an analytical verb form;
  • G/Prep: incorrect preposition usage;
  • G/Participle: incorrect usage of participles;
  • G/UngrammaticalStructure: digression from syntactic norms;
  • G/Comparison: incorrect formation of comparison degrees of adjectives and adverbs;
  • G/Conjunction: incorrect usage of conjunctions;
  • G/Other: other grammatical errors.

Fluency-related errors:

  • F/Style: style errors;
  • F/Calque: word-for-word translation from other languages;
  • F/Collocation: unnatural collocations;
  • F/PoorFlow: unnatural sentence flow;
  • F/Repetition: repetition of words;
  • F/Other: other fluency errors.

An accompanying Python package, ua_gec, provides many tools for working with annotated texts. See its documentation for details.

Train-test split

We expect users of the corpus to train and tune their models on the train split only. Feel free to further split it into train-dev (or use cross-validation).

Please use the test split only for reporting scores of your final model. In particular, never optimize on the test set. Do not tune hyperparameters on it. Do not use it for model selection in any way.

Next section lists the per-split statistics.

Statistics

UA-GEC contains:

GEC+Fluency

Split Documents Sentences Tokens Authors Errors
train 1,706 31,038 457,017 752 38,213
test 166 2,697 43,601 76 7,858
TOTAL 1,872 33,735 500,618 828 46,071

See stats.gec-fluency.txt for detailed statistics.

GEC-only

Split Documents Sentences Tokens Authors Errors
train 1,706 31,046 457,004 752 30,049
test 166 2,704 43,605 76 6,169
TOTAL 1,872 33,750 500,609 828 36,218

See stats.gec-only.txt for detailed statistics.

Python library

Alternatively to operating on data files directly, you may use a Python package called ua_gec. This package includes the data and has classes to iterate over documents, read metadata, work with annotations, etc.

Getting started

The package can be easily installed by pip:

    $ pip install ua_gec

Alternatively, you can install it from the source code:

    $ cd python
    $ python setup.py develop

Iterating through corpus

Once installed, you may get annotated documents from the Python code:

    
    >>> from ua_gec import Corpus
    >>> corpus = Corpus(partition="train", annotation_layer="gec-only")
    >>> for doc in corpus:
    ...     print(doc.source)         # "I likes it."
    ...     print(doc.target)         # "I like it."
    ...     print(doc.annotated)      # <AnnotatedText("I {likes=>like} it.")
    ...     print(doc.meta.region)    # "Київська"

Note that the doc.annotated property is of type AnnotatedText. This class is described in the next section

Working with annotations

ua_gec.AnnotatedText is a class that provides tools for processing annotated texts. It can iterate over annotations, get annotation error type, remove some of the annotations, and more.

Here is an example to get you started. It will remove all F/Style annotations from a text:

    >>> from ua_gec import AnnotatedText
    >>> text = AnnotatedText("I {likes=>like:::error_type=G/Number} it.")
    >>> for ann in text.iter_annotations():
    ...     print(ann.source_text)       # likes
    ...     print(ann.top_suggestion)    # like
    ...     print(ann.meta)              # {'error_type': 'Grammar'}
    ...     if ann.meta["error_type"] == "F/Style":
    ...         text.remove(ann)         # or `text.apply(ann)`

Multiple annotators

Some documents are annotated with multiple annotators. Such documents share doc_id but differ in doc.meta.annotator_id.

Currently, test sets for gec-fluency and gec-only are annotated by two annotators. The train sets contain 45 double-annotated docs.

Contributing

  • Data and code improvements are welcomed. Please submit a pull request.

Citation

The accompanying paper is:

@misc{syvokon2021uagec,
      title={UA-GEC: Grammatical Error Correction and Fluency Corpus for the Ukrainian Language},
      author={Oleksiy Syvokon and Olena Nahorna},
      year={2021},
      eprint={2103.16997},
      archivePrefix={arXiv},
      primaryClass={cs.CL}}

Contacts

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ua_gec-2.0.0.linux-x86_64.tar.gz (3.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ua_gec-2.0.0-py3-none-any.whl (6.1 MB view details)

Uploaded Python 3

File details

Details for the file ua_gec-2.0.0.linux-x86_64.tar.gz.

File metadata

  • Download URL: ua_gec-2.0.0.linux-x86_64.tar.gz
  • Upload date:
  • Size: 3.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.12

File hashes

Hashes for ua_gec-2.0.0.linux-x86_64.tar.gz
Algorithm Hash digest
SHA256 d5ceb2b47db4a2a59c5b51569383ec4642c3374408f03020cc0a002b84c4cb37
MD5 a6681e45d81a72c681913add5d10bc71
BLAKE2b-256 6e7089f7857213b7ed301b68d28299d68b49d086ac712ed5f73ded8efbdc488f

See more details on using hashes here.

File details

Details for the file ua_gec-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: ua_gec-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.12

File hashes

Hashes for ua_gec-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4a777d269f6ff9208cc1034988e106f97edae848c467e435fb1a012dae4570c5
MD5 f92d34915341a7d877d84aabc32db05e
BLAKE2b-256 336fa29b0fa1cc0847b5efa5261ad368a70fd88da573760a39b586ce73f6a5f9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page