Commit
·
c958d53
1
Parent(s):
1b3c838
Update README.md
Browse files
README.md
CHANGED
|
@@ -17,6 +17,8 @@ metrics:
|
|
| 17 |
This model is an implementation of the paper [A Simple Recipe for Multilingual Grammatical Error Correction](https://arxiv.org/pdf/2106.03830.pdf) from Google where they report the State of the art score in the task of Grammatical Error Correction (GEC).
|
| 18 |
We implement the version with the T5-small with the reported F_0.5 score in the paper (60.70).
|
| 19 |
|
|
|
|
|
|
|
| 20 |
In order to use the model, look at the following snippet:
|
| 21 |
```python
|
| 22 |
from transformers import T5ForConditionalGeneration, T5Tokenizer
|
|
|
|
| 17 |
This model is an implementation of the paper [A Simple Recipe for Multilingual Grammatical Error Correction](https://arxiv.org/pdf/2106.03830.pdf) from Google where they report the State of the art score in the task of Grammatical Error Correction (GEC).
|
| 18 |
We implement the version with the T5-small with the reported F_0.5 score in the paper (60.70).
|
| 19 |
|
| 20 |
+
To effectively use the "Hosted inference API", write "gec: [YOUR SENTENCE HERE]".
|
| 21 |
+
|
| 22 |
In order to use the model, look at the following snippet:
|
| 23 |
```python
|
| 24 |
from transformers import T5ForConditionalGeneration, T5Tokenizer
|