python归一化,标准化
Posted 本站大佬
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python归一化,标准化相关的知识,希望对你有一定的参考价值。
import numpy as np
# 归一化
def MaxMin(x):
x_min = np.tile(np.min(x,0),[x.shape[0],1])
x_max = np.tile(np.max(x,0),[x.shape[0],1])
Y = (x - x_min)/((x_max - x_min))
return Y
# 标准化
def Z_score(x):
x_mean = np.tile(np.mean(x,0),[x.shape[0],1])
x_var = np.tile(np.var(x, 0), [x.shape[0], 1])
Y = (x - x_mean)/x_var
return Y
以上是关于python归一化,标准化的主要内容,如果未能解决你的问题,请参考以下文章