Skip to content

Commit

Permalink
fix bugs stable now
Browse files Browse the repository at this point in the history
  • Loading branch information
KohlerHECTOR committed Jul 18, 2024
1 parent 6e88603 commit e5bb8cf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ It is also possible to do regression, including multi-output regression.

## Installation
```bash
pip install git+https://github.com/KohlerHECTOR/dpdt-py.git@v0.1.7
pip install git+https://github.com/KohlerHECTOR/dpdt-py.git@v0.2.1
```


Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = "dpdt"
copyright = "2024, Hector Kohler"
author = "Hector Kohler"
release = "0.2.0"
release = "0.2.1"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Installation
```bash
pip install git+https://github.com/KohlerHECTOR/dpdt-py.git@v0.1.7
pip install git+https://github.com/KohlerHECTOR/dpdt-py.git@v0.2.1
```


Expand Down
2 changes: 1 addition & 1 deletion dpdt/dpdt_sklearn.py
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ def fit(self, X, y, feature_costs=None):

# Store the training data to predict later
self.X_ = X
self.y_ = y
self.y_ = y.astype(float)

if self.max_nb_trees < 2:
self.zetas_ = np.zeros(1)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import os

__version__ = "0.2.0"
__version__ = "0.2.1"

packages = find_packages(
exclude=[
Expand Down

0 comments on commit e5bb8cf

Please sign in to comment.