gpt4 book ai didi

python - sklearn.preprocessing.normalize 中的范数参数

转载 作者:行者123 更新时间:2023-11-30 09:26:05 25 4
gpt4 key购买 nike

sklearn documentation说“规范”可以是其中之一

norm : ‘l1’, ‘l2’, or ‘max’, optional (‘l2’ by default)
The norm to use to normalize each non zero sample (or each non-zero feature if axis is 0).

The documentation about normalization没有明确说明“l1”、“l2”或“max”是如何计算的。

有人能清除这些吗?

最佳答案

通俗地说,范数是(向量)长度概念的推广;来自Wikipedia entry :

In linear algebra, functional analysis, and related areas of mathematics, a norm is a function that assigns a strictly positive length or size to each vector in a vector space.

L2-norm是通常的欧几里德长度,即向量元素平方和的平方根。

L1-norm是向量元素的绝对值之和。

max-norm (有时也称为无穷范数)只是最大绝对向量元素。

正如文档所说,标准化在这里意味着使我们的向量(即数据样本)具有单位长度,因此还需要指定哪个长度(即哪个范数)。

您可以通过改编 docs 中的示例轻松验证上述内容:

from sklearn import preprocessing 
import numpy as np

X = [[ 1., -1., 2.],
[ 2., 0., 0.],
[ 0., 1., -1.]]

X_l1 = preprocessing.normalize(X, norm='l1')
X_l1
# array([[ 0.25, -0.25, 0.5 ],
# [ 1. , 0. , 0. ],
# [ 0. , 0.5 , -0.5 ]])

您可以通过简单的目视检查来验证 X_l1 元素的绝对值之和是否为 1。

X_l2 = preprocessing.normalize(X, norm='l2')
X_l2
# array([[ 0.40824829, -0.40824829, 0.81649658],
# [ 1. , 0. , 0. ],
# [ 0. , 0.70710678, -0.70710678]])

np.sqrt(np.sum(X_l2**2, axis=1)) # verify that L2-norm is indeed 1
# array([ 1., 1., 1.])

关于python - sklearn.preprocessing.normalize 中的范数参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48232331/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com