Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions hunga_bunga.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
numpy
tabulate
4 changes: 2 additions & 2 deletions hunga_bunga/__init__.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
Binary file removed hunga_bunga/__init__.pyc
Binary file not shown.
4 changes: 2 additions & 2 deletions hunga_bunga/classification.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
Binary file removed hunga_bunga/classification.pyc
Binary file not shown.
Empty file modified hunga_bunga/core.py
100644 → 100755
Empty file.
Binary file removed hunga_bunga/core.pyc
Binary file not shown.
Empty file modified hunga_bunga/params.py
100644 → 100755
Empty file.
Binary file removed hunga_bunga/params.pyc
Binary file not shown.
4 changes: 2 additions & 2 deletions hunga_bunga/regression.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
Binary file removed hunga_bunga/regression.pyc
Binary file not shown.