preprocessing 模块提供了数据预处理函数和预处理类,预处理类主要是为了方便添加到 pipeline 过程中. 数据标准化 标准化预处理函数: preprocessing.scale(X, axis=0, with_mean=True, with_std=True, copy=True): 将数据转化为标准正态分布(均值为0,方差为1) preprocessing.minmax_scale(X, feature_range=(0, 1), axis=0, copy=True): 将数据…