Skip to content

Commit 30bbd36

Browse files
author
Yam Peleg
committed
hunga bunga
1 parent 24ab73b commit 30bbd36

10 files changed

Lines changed: 58 additions & 64 deletions

File tree

.idea/workspace.xml

Lines changed: 52 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
X_r, y_r = gen_reg_data(10, 3, 100, 3, sum, 0.3)
1616

1717

18-
"""
18+
1919
# ---------- Classification ----------
2020

2121
clf = HungaBungaClassifier()
2222
clf.fit(X_c, y_c)
2323
print(clf.predict(X_c))
24-
"""
24+
2525

2626

2727
# ---------- Regression ----------

hunga_bunga/classification.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
from sklearn.base import RegressorMixin
2424
from sklearn.base import is_classifier
2525

26-
from utilities import *
27-
from universal_params import *
26+
from core import *
27+
from params import *
2828

2929

3030
linear_models_n_params = [

hunga_bunga/classification.pyc

0 Bytes
Binary file not shown.

hunga_bunga/regression.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
from sklearn.base import is_classifier
2020

2121

22-
from utilities import *
23-
from universal_params import *
22+
from core import *
23+
from params import *
2424

2525

2626
linear_models_n_params = [

hunga_bunga/regression.pyc

55 Bytes
Binary file not shown.

hunga_bunga/universal_params.pyc

-2.22 KB
Binary file not shown.

hunga_bunga/utilities.pyc

-5.29 KB
Binary file not shown.

0 commit comments

Comments
 (0)