数据预处理 z-score 标准化
μ为所有样本数据的均值。 σ为所有样本数据的标准差。
import numpy as np
#min-max 标准化
def normalize(x):
x_max = np.max(x)
x_min = np.min(x)
return (x – x_min) / (x_max
– x_min)
#z-score 标准化
def standardize(x):
ave = np.average(x)
std = np.std(x)
return