From 76bd7ff783cfceb740bc244fb93706c13fbe2745 Mon Sep 17 00:00:00 2001 From: Andy Eschbacher Date: Mon, 28 Nov 2016 14:33:02 -0500 Subject: [PATCH] update dependency paths --- src/py/crankshaft/crankshaft/__init__.py | 1 + src/py/crankshaft/crankshaft/regression/__init__.py | 2 ++ src/py/crankshaft/crankshaft/regression/{gwr => }/gwr.py | 0 src/py/crankshaft/crankshaft/regression/gwr/__init__.py | 1 + 4 files changed, 4 insertions(+) create mode 100644 src/py/crankshaft/crankshaft/regression/__init__.py rename src/py/crankshaft/crankshaft/regression/{gwr => }/gwr.py (100%) create mode 100644 src/py/crankshaft/crankshaft/regression/gwr/__init__.py 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 *