|
1 | 1 | # LinearBoost Classifier |
2 | 2 |
|
3 | | - |
| 3 | + |
4 | 4 | [](https://pypi.org/project/linearboost/) |
5 | 5 |  |
6 | 6 | [](https://pepy.tech/projects/linearboost) |
@@ -32,7 +32,7 @@ Key Features: |
32 | 32 |
|
33 | 33 | --- |
34 | 34 |
|
35 | | -## 🚀 New in Version 0.1.5 |
| 35 | +## 🚀 New in Version 0.1.6 |
36 | 36 |
|
37 | 37 | The latest release introduces major architectural improvements designed for **scalability**, **robustness on imbalanced data**, and **training speed**. |
38 | 38 |
|
@@ -193,19 +193,19 @@ The following parameters yielded optimal results during testing. All results are |
193 | 193 | - `poly`: For polynomial relationships. |
194 | 194 | - `sigmoid`: For sigmoid-like decision boundaries. |
195 | 195 |
|
196 | | -- **`kernel_approx`** *(new in v0.1.5)*: |
| 196 | +- **`kernel_approx`** *(new in v0.1.6)*: |
197 | 197 | For large datasets with non-linear kernels: |
198 | 198 | - `None`: Use full kernel matrix (default, exact but \(O(n^2)\) memory). |
199 | 199 | - `'rff'`: Random Fourier Features (only with `kernel='rbf'`). |
200 | 200 | - `'nystrom'`: Nyström approximation (works with any kernel). |
201 | 201 |
|
202 | | -- **`subsample`** *(new in v0.1.5)*: |
| 202 | +- **`subsample`** *(new in v0.1.6)*: |
203 | 203 | Values in (0, 1] control stochastic boosting. Use `0.8` for variance reduction while maintaining speed. |
204 | 204 |
|
205 | | -- **`shrinkage`** *(new in v0.1.5)*: |
| 205 | +- **`shrinkage`** *(new in v0.1.6)*: |
206 | 206 | Values in (0, 1] scale each estimator's contribution. Use `0.8-0.95` to improve generalization. |
207 | 207 |
|
208 | | -- **`early_stopping`** *(new in v0.1.5)*: |
| 208 | +- **`early_stopping`** *(new in v0.1.6)*: |
209 | 209 | Set to `True` with `n_iter_no_change=5` and `tol=1e-4` to automatically stop training when validation performance plateaus. |
210 | 210 |
|
211 | 211 | 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