aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalvin <calvin@EESI>2013-04-01 14:57:01 -0400
committerCalvin <calvin@EESI>2013-04-01 14:57:01 -0400
commit7f476142f51e8e997bc9d3e1c20bc0bad6586dd7 (patch)
tree8e014e0fbb4d5dfb5f1fd59bd41025f8855f6ace
parentc98cd5946ac2cde3cc8532b3dcb1d858d9a4275d (diff)
move the meta information out of the docstring
-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
-
-
-