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, take a look at the code.
Model description
This is a proof of concept spelling correction model for English and German.
Intended uses & limitations
This project is work in progress, be aware that the model can produce artefacts. You can test the model using the pipeline-interface:
from transformers import pipeline
fix_spelling_pipeline = pipeline("text2text-generation",model="oliverguhr/spelling-correction-multilingual-base")
def fix_spelling(text, max_length = 256):
return fix_spelling_pipeline("fix:"+text,max_length = max_length)
print(fix_spelling_pipeline("can we mix the languages können wir die sprachen mischen",max_length=2048))
- Downloads last month
- 124
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social
visibility and check back later, or deploy to Inference Endpoints (dedicated)
instead.