Skip to content

Commit

Permalink
0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
systemallica committed Jul 24, 2020
1 parent db30fc9 commit 8a77f80
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 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.4

- Fix imports.

## 0.1.3

- Fix build.
Expand Down
2 changes: 1 addition & 1 deletion morfist/core/MixedRandomForest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import numpy as np
import scipy.stats

from core.MixedRandomTree import MixedRandomTree
from morfist.core.MixedRandomTree import MixedRandomTree


class MixedRandomForest:
Expand Down
2 changes: 1 addition & 1 deletion morfist/core/MixedRandomTree.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import numpy as np

from core.MixedSplitter import MixedSplitter
from morfist.core.MixedSplitter import MixedSplitter


class MixedRandomTree:
Expand Down
2 changes: 1 addition & 1 deletion morfist/core/MixedSplitter.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import numpy as np
from numba import njit

from algo import numba_histogram
from morfist.algo.histogram import numba_histogram


@njit
Expand Down
4 changes: 1 addition & 3 deletions 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.3"
version = "0.1.4"
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 All @@ -15,8 +15,6 @@ classifiers = [
]
packages = [
{ include = "morfist" },
{ include = "morfist/core" },
{ include = "morfist/algo" },
]

[tool.poetry.dependencies]
Expand Down

0 comments on commit 8a77f80

Please sign in to comment.