preprocessing.py 文件源码

python
阅读 26 收藏 0 点赞 0 评论 0

项目:Default-Credit-Card-Prediction 作者: AlexPnt 项目源码 文件源码
def scale_by_max_value(X):
    """
    Scale each feature by its abs maximum value.

    Keyword arguments:
    X -- The feature vectors    
    """

    if verbose:
        print '\nScaling to the range [-1,1] ...'

    max_abs_scaler = preprocessing.MaxAbsScaler()
    return max_abs_scaler.fit_transform(X)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号