aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--feast.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/feast.py b/feast.py
index 06b6782..ca8ce4a 100644
--- a/feast.py
+++ b/feast.py
@@ -467,5 +467,5 @@ def check_data(data, labels):
if len(data) != len(labels):
raise Exception("data and labels must be the same length")
-
- return 1.0*data, 1.0*labels
+
+ return 1.0*np.array(data, order="F"), 1.0*np.array(labels, order="F")