Skip to content

Commit ba74e5a

Browse files
committed
bump version -> v0.1.1
1 parent 8498938 commit ba74e5a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 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.0-green)
3+
![Lastest Release](https://img.shields.io/badge/release-v0.1.1-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
=======================
@@ -64,7 +64,7 @@ The following parameters yielded optimal results during testing. All results are
6464
- `SAMME`: May be better for datasets with clearer separations between classes.
6565
- `SAMME.R`: Can handle more nuanced class probabilities.
6666

67-
**Note:** As of scikit-learn v1.6, the `algorithm` parameter is deprecated and will be removed in v1.8. LinearBoost will only implement the 'SAMME' algorithm in newer versions.
67+
**Note:** As of scikit-learn v1.6, the `algorithm` parameter is deprecated and will be removed in v1.8. LinearBoostClassifier will only implement the 'SAMME' algorithm in newer versions.
6868

6969
- **`scaler`**:
7070
The following scaling methods are recommended based on dataset characteristics:

src/linearboost/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.0"
1+
__version__ = "0.1.1"
22

33
from .linear_boost import LinearBoostClassifier
44
from .sefr import SEFR

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)