def normalization(x): x_min = x.min() x_max = x.max() x_ave = x.mean() x_normal = (x - x_ave)/(x_max - x_min) return x_normal normalization(x)
目的
データxが与えられたときに、出力範囲を0~1とする。(RGB値を255で割るのも同じ理由)<学習データの正規化でよく使います>
特徴
最大値、最小値の大きさに左右されるため、一方が著しい値を持つと、変な値が出る。