iproskurina commited on
Commit
0bbb04c
1 Parent(s): ec71a42

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -15
README.md CHANGED
@@ -1,21 +1,34 @@
1
  ---
2
  tags:
3
- - spacy
 
 
 
 
 
4
  language:
5
  - en
6
  license: cc-by-sa-3.0
7
- model-index:
8
- - name: en_grammar_checker
9
- results: []
10
  ---
11
- | Feature | Description |
12
- | --- | --- |
13
- | **Name** | `en_grammar_checker` |
14
- | **Version** | `1.0.2` |
15
- | **spaCy** | `>=3.5.0,<3.6.0` |
16
- | **Default Pipeline** | `punctuation`, `spelling`, `articles`, `grammar_major`, `grammar_minor`, `vocabulary` |
17
- | **Components** | `punctuation`, `spelling`, `articles`, `grammar_major`, `grammar_minor`, `vocabulary` |
18
- | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
19
- | **Sources** | n/a |
20
- | **License** | n/a |
21
- | **Author** | [n/a]() |
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  tags:
3
+ - Token Classification
4
+ - spacy
5
+ - SpanCategorizer
6
+ - grammar_checker
7
+ - essay_checker
8
+
9
  language:
10
  - en
11
  license: cc-by-sa-3.0
 
 
 
12
  ---
13
+
14
+ # Essay Grammar Checker
15
+
16
+ Essay Grammar Checker trained on [Russian Error-Annotated Learner English Corpus](https://realec.org).
17
+
18
+ ## Training information
19
+ The checker consists of 6 pipelines each trained on specific error types.
20
+ Error Categories used for pipeline mapping:
21
+
22
+ ```
23
+ "spelling":{"Spelling", "Capitalisation"},
24
+ "punctuation": {"Punctuation"},
25
+ "articles": {"Articles"},
26
+ "vocabulary": {"lex_item_choice", "lex_part_choice",
27
+ 'Category_confusion','Formational_affixes'},
28
+ "grammar_major": {'Tense_choice','Prepositions','Agreement_errors', 'Redundant_comp'},
29
+ "grammar_minor": {'Word_order','Noun_number', 'Numerals','Verb_pattern', 'Determiners'}
30
+ ```
31
+
32
+ [Detailed information](https://github.com/upunaprosk/grammar_checker)
33
+
34
+ [Example usage in Colab](https://github.com/upunaprosk/grammar_checker/blob/master/grammar_checker_example_usage.ipynb)