diff --git a/hunga_bunga.egg-info/requires.txt b/hunga_bunga.egg-info/requires.txt index 24ce15a..2eb85e8 100644 --- a/hunga_bunga.egg-info/requires.txt +++ b/hunga_bunga.egg-info/requires.txt @@ -1 +1,2 @@ numpy +tabulate diff --git a/hunga_bunga/__init__.py b/hunga_bunga/__init__.py old mode 100644 new mode 100755 index c52c27c..5afdd36 --- a/hunga_bunga/__init__.py +++ b/hunga_bunga/__init__.py @@ -3,8 +3,8 @@ warnings.filterwarnings('ignore') from multiprocessing import cpu_count from sklearn.base import BaseEstimator -from regression import HungaBungaRegressor, HungaBungaRandomRegressor -from classification import HungaBungaClassifier, HungaBungaRandomClassifier +from .regression import HungaBungaRegressor, HungaBungaRandomRegressor +from .classification import HungaBungaClassifier, HungaBungaRandomClassifier class HungaBungaZeroKnowledge(BaseEstimator): diff --git a/hunga_bunga/__init__.pyc b/hunga_bunga/__init__.pyc deleted file mode 100644 index c793300..0000000 Binary files a/hunga_bunga/__init__.pyc and /dev/null differ diff --git a/hunga_bunga/classification.py b/hunga_bunga/classification.py old mode 100644 new mode 100755 index 7871f36..23c0b43 --- a/hunga_bunga/classification.py +++ b/hunga_bunga/classification.py @@ -25,8 +25,8 @@ from sklearn.base import RegressorMixin from sklearn.base import is_classifier -from core import * -from params import * +from .core import * +from .params import * linear_models_n_params = [ diff --git a/hunga_bunga/classification.pyc b/hunga_bunga/classification.pyc deleted file mode 100644 index e5b879f..0000000 Binary files a/hunga_bunga/classification.pyc and /dev/null differ diff --git a/hunga_bunga/core.py b/hunga_bunga/core.py old mode 100644 new mode 100755 diff --git a/hunga_bunga/core.pyc b/hunga_bunga/core.pyc deleted file mode 100644 index 8f5aeff..0000000 Binary files a/hunga_bunga/core.pyc and /dev/null differ diff --git a/hunga_bunga/params.py b/hunga_bunga/params.py old mode 100644 new mode 100755 diff --git a/hunga_bunga/params.pyc b/hunga_bunga/params.pyc deleted file mode 100644 index 77c4913..0000000 Binary files a/hunga_bunga/params.pyc and /dev/null differ diff --git a/hunga_bunga/regression.py b/hunga_bunga/regression.py old mode 100644 new mode 100755 index 0a9967a..599c92f --- a/hunga_bunga/regression.py +++ b/hunga_bunga/regression.py @@ -21,8 +21,8 @@ from sklearn.linear_model import LinearRegression, Ridge, Lasso, ElasticNet, Lars, LassoLars, OrthogonalMatchingPursuit, BayesianRidge, ARDRegression, SGDRegressor, PassiveAggressiveRegressor, RANSACRegressor, HuberRegressor -from core import * -from params import * +from .core import * +from .params import * linear_models_n_params = [ diff --git a/hunga_bunga/regression.pyc b/hunga_bunga/regression.pyc deleted file mode 100644 index 23ae066..0000000 Binary files a/hunga_bunga/regression.pyc and /dev/null differ