Transformers
PyTorch
English
t5
text2text-generation
grammar
spell
correction
text-generation-inference
Instructions to use leoyt61/spellcheck_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use leoyt61/spellcheck_model with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("leoyt61/spellcheck_model") model = AutoModelForSeq2SeqLM.from_pretrained("leoyt61/spellcheck_model") - Notebooks
- Google Colab
- Kaggle
| FROM python:3.9 | |
| WORKDIR /app | |
| COPY . . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| CMD ["python", "train.py"] | |