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
File size: 116 Bytes
54f5ec9 | 1 2 3 4 5 6 | FROM python:3.9
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "train.py"]
|