fixed indentation

This commit is contained in:
ltcptgeneral 2020-05-01 23:14:19 -05:00
parent 29aa3787d6
commit 80791744c8

View File

@ -357,9 +357,9 @@ def z_score(point, mean, stdev):
@jit(forceobj=True) @jit(forceobj=True)
def z_normalize(array, *args): def z_normalize(array, *args):
array = np.array(array) array = np.array(array)
for arg in args: for arg in args:
array = sklearn.preprocessing.normalize(array, axis = arg) array = sklearn.preprocessing.normalize(array, axis = arg)
return array return array