Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# git-commits-sorter
|
| 2 |
|
| 3 |
Classify raw git commit messages into categories (`bugfix`, `feature`, `chore`, `docs`, `refactor`, etc.) using a hybrid ML pipeline: TF-IDF + metadata → SVM / RF / CatBoost.
|
|
@@ -127,4 +133,4 @@ Best result: **LinearSVC at 79% accuracy** on held-out test set.
|
|
| 127 |
python parser.py
|
| 128 |
```
|
| 129 |
|
| 130 |
-
Collects commits from configured repos into `commits.jsonl`. Resumes on interrupt via `progress.json`.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
pipeline_tag: text-classification
|
| 6 |
+
---
|
| 7 |
# git-commits-sorter
|
| 8 |
|
| 9 |
Classify raw git commit messages into categories (`bugfix`, `feature`, `chore`, `docs`, `refactor`, etc.) using a hybrid ML pipeline: TF-IDF + metadata → SVM / RF / CatBoost.
|
|
|
|
| 133 |
python parser.py
|
| 134 |
```
|
| 135 |
|
| 136 |
+
Collects commits from configured repos into `commits.jsonl`. Resumes on interrupt via `progress.json`.
|