sklearn.utils.sparsefuncs.inplace_row_scale

sklearn.utils.sparsefuncs.inplace_row_scale(X, scale)

源码

CSR或CSC矩阵的就地行缩放。

通过乘以调用者提供的特定比例(假定形状为(n_samples,n_features))来缩放数据矩阵的每一行。

参数 说明
X CSR or CSC sparse matrix, shape (n_samples, n_features)
要缩放的矩阵。
scale float array with shape (n_features,)
用于缩放的预先计算的抽样值数组。