This is an experimental model that should fix your typos and punctuation.
If you like to run your own experiments or train for a different language, have a look at
the code.
This is a proof of concept spelling correction model for English.
This project is work in progress, be aware that the model can produce artefacts.
You can test the model using the pipeline-interface:
1from transformers import pipeline
2
3fix_spelling = pipeline("text2text-generation",model="oliverguhr/spelling-correction-english-base")
4
5print(fix_spelling("lets do a comparsion",max_length=2048))