方法2: from sklearn.preprocessing import Normalizer X = [[ 1., -1., 2.],[ 2., 0., 0.],[ 0., 1., -1.]] normalizer = Normalizer().fit(X) ...
確定! 回上一頁