diff --git a/src/py/crankshaft/crankshaft/__init__.py b/src/py/crankshaft/crankshaft/__init__.py index 4e06bc5..e9d0542 100644 --- a/src/py/crankshaft/crankshaft/__init__.py +++ b/src/py/crankshaft/crankshaft/__init__.py @@ -3,3 +3,4 @@ import crankshaft.random_seeds import crankshaft.clustering import crankshaft.space_time_dynamics import crankshaft.segmentation +import crankshaft.regression diff --git a/src/py/crankshaft/crankshaft/regression/__init__.py b/src/py/crankshaft/crankshaft/regression/__init__.py new file mode 100644 index 0000000..b2e213d --- /dev/null +++ b/src/py/crankshaft/crankshaft/regression/__init__.py @@ -0,0 +1,2 @@ +from crankshaft.regression.gwr import * +from crankshaft.regression.glm import * diff --git a/src/py/crankshaft/crankshaft/regression/gwr/gwr.py b/src/py/crankshaft/crankshaft/regression/gwr.py similarity index 100% rename from src/py/crankshaft/crankshaft/regression/gwr/gwr.py rename to src/py/crankshaft/crankshaft/regression/gwr.py diff --git a/src/py/crankshaft/crankshaft/regression/gwr/__init__.py b/src/py/crankshaft/crankshaft/regression/gwr/__init__.py new file mode 100644 index 0000000..f7a77b2 --- /dev/null +++ b/src/py/crankshaft/crankshaft/regression/gwr/__init__.py @@ -0,0 +1 @@ +from base import *