CoolFace
Modelpublic

KothaGPT/readability-classifier

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes10downloads
README.md27 linesDownload Raw Back to root
1# Readability Classifier2 3## Task: Age-appropriate readability classification4 5### Labels6- 6-87- 9-108- 11-129- general10 11### Training12To train this model, install transformers and run:13 14```bash15pip install transformers datasets16python scripts/train_classifier.py --task readability --data datasets/processed/17```18 19### Usage20```python21from bilingual import bilingual_api as bb22 23# Use the classifier24result = bb.readability_check("Your text here")25print(result)26```27