Skip to content

Commit 5a227ec

Browse files
authored
Update README.md
1 parent 937da17 commit 5a227ec

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# LinearBoost Classifier
22

3-
![Lastest Release](https://img.shields.io/badge/release-v0.1.5-green)
3+
![Lastest Release](https://img.shields.io/badge/release-v0.1.6-green)
44
[![PyPI Version](https://img.shields.io/pypi/v/linearboost)](https://pypi.org/project/linearboost/)
55
![Python Versions](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue)
66
[![PyPI Downloads](https://static.pepy.tech/badge/linearboost)](https://pepy.tech/projects/linearboost)
@@ -32,7 +32,7 @@ Key Features:
3232

3333
---
3434

35-
## 🚀 New in Version 0.1.5
35+
## 🚀 New in Version 0.1.6
3636

3737
The latest release introduces major architectural improvements designed for **scalability**, **robustness on imbalanced data**, and **training speed**.
3838

@@ -193,19 +193,19 @@ The following parameters yielded optimal results during testing. All results are
193193
- `poly`: For polynomial relationships.
194194
- `sigmoid`: For sigmoid-like decision boundaries.
195195

196-
- **`kernel_approx`** *(new in v0.1.5)*:
196+
- **`kernel_approx`** *(new in v0.1.6)*:
197197
For large datasets with non-linear kernels:
198198
- `None`: Use full kernel matrix (default, exact but \(O(n^2)\) memory).
199199
- `'rff'`: Random Fourier Features (only with `kernel='rbf'`).
200200
- `'nystrom'`: Nyström approximation (works with any kernel).
201201

202-
- **`subsample`** *(new in v0.1.5)*:
202+
- **`subsample`** *(new in v0.1.6)*:
203203
Values in (0, 1] control stochastic boosting. Use `0.8` for variance reduction while maintaining speed.
204204

205-
- **`shrinkage`** *(new in v0.1.5)*:
205+
- **`shrinkage`** *(new in v0.1.6)*:
206206
Values in (0, 1] scale each estimator's contribution. Use `0.8-0.95` to improve generalization.
207207

208-
- **`early_stopping`** *(new in v0.1.5)*:
208+
- **`early_stopping`** *(new in v0.1.6)*:
209209
Set to `True` with `n_iter_no_change=5` and `tol=1e-4` to automatically stop training when validation performance plateaus.
210210

211211
These parameters should serve as a solid starting point for most datasets. For fine-tuning, consider using hyperparameter optimization tools like [Optuna](https://optuna.org/).

0 commit comments

Comments
 (0)