Transformers
PyTorch
Safetensors
English
t5
text2text-generation
spellchecking
NLP
T5
natural language generation
text-generation-inference
Instructions to use ai-forever/T5-large-spell with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ai-forever/T5-large-spell with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("ai-forever/T5-large-spell") model = AutoModelForSeq2SeqLM.from_pretrained("ai-forever/T5-large-spell", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
7c27f2b
1
Parent(s): 6b6b533
Update README.md
Browse files
README.md
CHANGED
|
@@ -15,7 +15,7 @@ tags:
|
|
| 15 |
### Summary
|
| 16 |
The model corrects spelling errors and typos by bringing all words in the text to the standard English language.
|
| 17 |
The proofreader was trained based on the [T5-large](https://huggingface.co/t5-large) model.
|
| 18 |
-
An extensive dataset with “artificial” errors was taken as a training corpus: the corpus was assembled on the basis of the English-language Wikipedia and News blogs, then typos and spelling errors were automatically introduced into it using the functionality of the [SAGE library](https://github.com/
|
| 19 |
|
| 20 |
### Public references
|
| 21 |
- [SAGE library announcement](https://youtu.be/yFfkV0Qjuu0), DataFest 2023
|
|
@@ -78,7 +78,7 @@ print(answer)
|
|
| 78 |
```
|
| 79 |
|
| 80 |
## Resources
|
| 81 |
-
- [SAGE library](https://github.com/
|
| 82 |
- [ruM2M100-1.2B](https://huggingface.co/ai-forever/RuM2M100-1.2B), HuggingFace
|
| 83 |
- [ruM2M100-418M](https://huggingface.co/ai-forever/RuM2M100-420M), HuggingFace
|
| 84 |
- [FredT5-large-spell](https://huggingface.co/ai-forever/FRED-T5-large-spell), HuggingFace
|
|
|
|
| 15 |
### Summary
|
| 16 |
The model corrects spelling errors and typos by bringing all words in the text to the standard English language.
|
| 17 |
The proofreader was trained based on the [T5-large](https://huggingface.co/t5-large) model.
|
| 18 |
+
An extensive dataset with “artificial” errors was taken as a training corpus: the corpus was assembled on the basis of the English-language Wikipedia and News blogs, then typos and spelling errors were automatically introduced into it using the functionality of the [SAGE library](https://github.com/ai-forever/sage).
|
| 19 |
|
| 20 |
### Public references
|
| 21 |
- [SAGE library announcement](https://youtu.be/yFfkV0Qjuu0), DataFest 2023
|
|
|
|
| 78 |
```
|
| 79 |
|
| 80 |
## Resources
|
| 81 |
+
- [SAGE library](https://github.com/ai-forever/sage), GitHub
|
| 82 |
- [ruM2M100-1.2B](https://huggingface.co/ai-forever/RuM2M100-1.2B), HuggingFace
|
| 83 |
- [ruM2M100-418M](https://huggingface.co/ai-forever/RuM2M100-420M), HuggingFace
|
| 84 |
- [FredT5-large-spell](https://huggingface.co/ai-forever/FRED-T5-large-spell), HuggingFace
|