aboutsummaryrefslogtreecommitdiff
path: root/feast.py
diff options
context:
space:
mode:
Diffstat (limited to 'feast.py')
-rw-r--r--feast.py21
1 files changed, 9 insertions, 12 deletions
diff --git a/feast.py b/feast.py
index afe87aa..8fb5ce8 100644
--- a/feast.py
+++ b/feast.py
@@ -8,16 +8,16 @@
theoretic feature selection," Journal of Machine Learning
Research, vol. 13, pp. 27-66, 2012.
-
- __author__ = "Calvin Morrison"
- __copyright__ = "Copyright 2013, EESI Laboratory"
- __credits__ = ["Calvin Morrison", "Gregory Ditzler"]
- __license__ = "GPL"
- __version__ = "0.1.0"
- __maintainer__ = "Calvin Morrison"
- __email__ = "mutantturkey@gmail.com"
- __status__ = "Release"
'''
+__author__ = "Calvin Morrison"
+__copyright__ = "Copyright 2013, EESI Laboratory"
+__credits__ = ["Calvin Morrison", "Gregory Ditzler"]
+__license__ = "GPL"
+__version__ = "0.2.0"
+__maintainer__ = "Calvin Morrison"
+__email__ = "mutantturkey@gmail.com"
+__status__ = "Release"
+
import numpy as np
from ctypes import *
@@ -538,6 +538,3 @@ def check_data(data, labels):
raise Exception("data and labels must be the same length")
return 1.0*data, 1.0*labels
-
-
-