Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Sinhala Dyslexia Binary Essay Classifier
|
| 2 |
+
|
| 3 |
+
This repository contains a binary dyslexia detection model for Sinhala essays.
|
| 4 |
+
|
| 5 |
+
## Model Overview
|
| 6 |
+
- Task: Binary dyslexia classification (Dyslexic vs Non-Dyslexic)
|
| 7 |
+
- Level: Essay-level (sentence aggregation)
|
| 8 |
+
- Feature Extraction: Character-level TF-IDF (2–4 grams)
|
| 9 |
+
- Classifier: Logistic Regression
|
| 10 |
+
|
| 11 |
+
## Files
|
| 12 |
+
- `dyslexia_binary_model.pkl` – Trained binary classifier
|
| 13 |
+
- `tfidf_vectorizer.pkl` – TF-IDF vectorizer used during training
|
| 14 |
+
|
| 15 |
+
## Usage
|
| 16 |
+
|
| 17 |
+
```python
|
| 18 |
+
import joblib
|
| 19 |
+
|
| 20 |
+
model = joblib.load("dyslexia_binary_model.pkl")
|
| 21 |
+
vectorizer = joblib.load("tfidf_vectorizer.pkl")
|