Skip to content

Commit

Permalink
0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
systemallica committed Jul 24, 2020
1 parent 8a77f80 commit 6088269
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.5

- New import syntax.

## 0.1.4

- Fix imports.
Expand Down
1 change: 1 addition & 0 deletions morfist/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from morfist.core.MixedRandomForest import MixedRandomForest
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "decision-tree-morfist"
version = "0.1.4"
version = "0.1.5"
description = "Multi-target Random Forest implementation that can mix both classification and regression tasks."
authors = ["Andrés Reverón Molina <andres@reveronmolina.me>", "Henrik Linusson <henrik.linusson@hb.se>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
from sklearn.ensemble import RandomForestRegressor, RandomForestClassifier
from sklearn.model_selection import cross_val_score

from algo.evaluation import cross_validation
from core.MixedRandomForest import MixedRandomForest
from algo.evaluation import cross_validation
from morfist import MixedRandomForest

# Configuration
# Number of tress of the random forest
Expand Down

0 comments on commit 6088269

Please sign in to comment.