iproskurina
commited on
Commit
·
0bbb04c
1
Parent(s):
ec71a42
Update README.md
Browse files
README.md
CHANGED
@@ -1,21 +1,34 @@
|
|
1 |
---
|
2 |
tags:
|
3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
4 |
language:
|
5 |
- en
|
6 |
license: cc-by-sa-3.0
|
7 |
-
model-index:
|
8 |
-
- name: en_grammar_checker
|
9 |
-
results: []
|
10 |
---
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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)
|