我可能的价值观是:
0: [0 0 0 0]
1: [1 0 0 0]
2: [1 1 0 0]
3: [1 1 1 0]
4: [1 1 1 1]我有一些价值观:
[[0.9539342 0.84090066 0.46451256 0.09715253],
[0.9923432 0.01231235 0.19491441 0.09715253]
....我想找出哪些可能的值,这是最接近我的新值。理想情况下,我希望避免执行for循环,并想知道是否有某种向量化的方法来搜索最小均方误差?
我希望它返回一个类似于:[2, 1 ....的数组
发布于 2019-03-03 03:29:43
可以使用np.argmin获取rmse值的最低索引,该索引可以使用np.linalg.norm计算。
import numpy as np
a = np.array([[0, 0, 0, 0], [1, 0, 0, 0], [1, 1, 0, 0],[1, 1, 1, 0], [1, 1, 1, 1]])
b = np.array([0.9539342, 0.84090066, 0.46451256, 0.09715253])
np.argmin(np.linalg.norm(a-b, axis=1))
#outputs 2 which corresponds to the value [1, 1, 0, 0]正如编辑中提到的,b可以有多个行。op希望避免for循环,但我似乎无法找到避免for循环的方法。这是一个列表比较的方法,但是可能有一个更好的方法
[np.argmin(np.linalg.norm(a-i, axis=1)) for i in b]
#Outputs [2, 1]发布于 2019-03-02 23:54:43
让我们假设您的输入数据是字典。然后,可以将NumPy用于向量化的解决方案。首先将输入列表转换为NumPy数组,并使用axis=1参数获取RMSE。
# Input data
dicts = {0: [0, 0, 0, 0], 1: [1, 0, 0, 0], 2: [1, 1, 0, 0], 3: [1, 1, 1, 0],4: [1, 1, 1, 1]}
new_value = np.array([0.9539342, 0.84090066, 0.46451256, 0.09715253])
# Convert values to array
values = np.array(list(dicts.values()))
# Compute the RMSE and get the index for the least RMSE
rmse = np.mean((values-new_value)**2, axis=1)**0.5
index = np.argmin(rmse)
print ("The closest value is %s" %(values[index]))
# The closest value is [1 1 0 0]发布于 2019-03-03 03:24:46
纯粹的粗野:
val1 = np.array ([
[0, 0, 0, 0],
[1, 0, 0, 0],
[1, 1, 0, 0],
[1, 1, 1, 0],
[1, 1, 1, 1]
])
print val1
val2 = np.array ([0.9539342, 0.84090066, 0.46451256, 0.09715253], float)
val3 = np.round(val2, 0)
print val3
print np.where((val1 == val3).all(axis=1)) # show a match on row 2 (array([2]),)https://stackoverflow.com/questions/54963814
复制相似问题