當前位置: 首頁>>代碼示例>>Python>>正文


Python MinMaxScaler.transform方法代碼示例

本文整理匯總了Python中sklearn.preprocessing.data.MinMaxScaler.transform方法的典型用法代碼示例。如果您正苦於以下問題:Python MinMaxScaler.transform方法的具體用法?Python MinMaxScaler.transform怎麽用?Python MinMaxScaler.transform使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在sklearn.preprocessing.data.MinMaxScaler的用法示例。


在下文中一共展示了MinMaxScaler.transform方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_min_max_scaler_zero_variance_features

# 需要導入模塊: from sklearn.preprocessing.data import MinMaxScaler [as 別名]
# 或者: from sklearn.preprocessing.data.MinMaxScaler import transform [as 別名]
def test_min_max_scaler_zero_variance_features():
    """Check min max scaler on toy data with zero variance features"""
    X = [[0., 1., +0.5],
         [0., 1., -0.1],
         [0., 1., +1.1]]

    X_new = [[+0., 2., 0.5],
             [-1., 1., 0.0],
             [+0., 1., 1.5]]

    # default params
    scaler = MinMaxScaler()
    X_trans = scaler.fit_transform(X)
    X_expected_0_1 = [[0., 0., 0.5],
                      [0., 0., 0.0],
                      [0., 0., 1.0]]
    assert_array_almost_equal(X_trans, X_expected_0_1)
    X_trans_inv = scaler.inverse_transform(X_trans)
    assert_array_almost_equal(X, X_trans_inv)

    X_trans_new = scaler.transform(X_new)
    X_expected_0_1_new = [[+0., 1., 0.500],
                          [-1., 0., 0.083],
                          [+0., 0., 1.333]]
    assert_array_almost_equal(X_trans_new, X_expected_0_1_new, decimal=2)

    # not default params
    scaler = MinMaxScaler(feature_range=(1, 2))
    X_trans = scaler.fit_transform(X)
    X_expected_1_2 = [[1., 1., 1.5],
                      [1., 1., 1.0],
                      [1., 1., 2.0]]
    assert_array_almost_equal(X_trans, X_expected_1_2)
開發者ID:CodeGenerator,項目名稱:scikit-learn,代碼行數:35,代碼來源:test_data.py


注:本文中的sklearn.preprocessing.data.MinMaxScaler.transform方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。