Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
leoyt61
/
spellcheck_model
like
1
Text2Text Generation
Transformers
PyTorch
English
t5
grammar
spell
correction
text-generation-inference
Inference Endpoints
Model card
Files
Files and versions
Community
1
Train
Deploy
Use this model
main
spellcheck_model
/
dockerfile
Leonardo Yoshida
feat: add initial trained model and scripts
54f5ec9
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
116 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
. .
RUN
pip install --no-cache-dir -r requirements.txt
CMD
[
"python"
,
"train.py"
]