- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
编辑 我保留了下面面临的更复杂的问题,但我的问题是 np.take
可以更好地总结如下。假设你有一个数组 img
形状(planes, rows)
, 和另一个数组 lut
形状(planes, 256)
,并且您想使用它们创建一个新数组 out
形状(planes, rows)
, 其中out[p,j] = lut[p, img[p, j]]
.这可以通过如下花式索引来实现:
In [4]: %timeit lut[np.arange(planes).reshape(-1, 1), img]
1000 loops, best of 3: 471 us per loop
但是,如果您不使用花哨的索引,而是在 planes
上使用 take 和 python 循环事情可以大大加快:
In [6]: %timeit for _ in (lut[j].take(img[j]) for j in xrange(planes)) : pass
10000 loops, best of 3: 59 us per loop
可以lut
和 img
以某种方式重新排列,以便整个操作在没有 python 循环的情况下发生,但使用 numpy.take
(或替代方法)而不是传统的花式索引来保持速度优势?
原始问题我有一组要在图像上使用的查找表 (LUT)。包含 LUT 的数组的形状为 (planes, 256, n)
, 图像的形状为 (planes, rows, cols)
.两者都是dtype = 'uint8'
, 匹配256
LUT 的轴。这个想法是运行 p
- 通过每个 n
的图像的第平面来自 p
的 LUT -LUT 的第 plane。
如果我的lut
和 img
以下是:
planes, rows, cols, n = 3, 4000, 4000, 4
lut = np.random.randint(-2**31, 2**31 - 1,
size=(planes * 256 * n // 4,)).view('uint8')
lut = lut.reshape(planes, 256, n)
img = np.random.randint(-2**31, 2**31 - 1,
size=(planes * rows * cols // 4,)).view('uint8')
img = img.reshape(planes, rows, cols)
在使用像这样的花式索引后,我可以实现我的目标
out = lut[np.arange(planes).reshape(-1, 1, 1), img]
这给了我一个形状数组 (planes, rows, cols, n)
, 其中out[i, :, :, j]
持有i
-img
的第一个平面贯穿 j
-i
的 LUT -LUT 的第 plane...
一切都很好,除了这个:
In [2]: %timeit lut[np.arange(planes).reshape(-1, 1, 1), img]
1 loops, best of 3: 5.65 s per loop
这是完全 Not Acceptable ,特别是因为我有以下所有使用 np.take
的不太好看的替代品比跑得快得多:
单个平面上的单个 LUT 运行速度大约快 70 倍:
In [2]: %timeit np.take(lut[0, :, 0], img[0])
10 loops, best of 3: 78.5 ms per loop
运行所有所需组合的 python 循环完成速度几乎快了 6 倍:
In [2]: %timeit for _ in (np.take(lut[j, :, k], img[j]) for j in xrange(planes) for k in xrange(n)) : pass
1 loops, best of 3: 947 ms per loop
甚至运行 LUT 和图像中的所有平面组合,然后丢弃 planes**2 - planes
不需要的比花哨的索引更快:
In [2]: %timeit np.take(lut, img, axis=1)[np.arange(planes), np.arange(planes)]
1 loops, best of 3: 3.79 s per loop
我能想出的最快组合有一个 python 循环遍历平面并更快地完成 x13:
In [2]: %timeit for _ in (np.take(lut[j], img[j], axis=0) for j in xrange(planes)) : pass
1 loops, best of 3: 434 ms per loop
当然,问题是是否没有办法用 np.take
做到这一点?没有任何 python 循环?理想情况下,任何需要的 reshape 或调整大小都应该发生在 LUT 上,而不是图像上,但我对你们能想出的任何事情持开放态度......
最佳答案
首先我要说的是我真的很喜欢你的问题。在不重新排列 LUT
或 IMG
的情况下,以下解决方案有效:
%timeit a=np.take(lut, img, axis=1)
# 1 loops, best of 3: 1.93s per loop
但是从结果中你必须查询对角线:a[0,0], a[1,1], a[2,2];得到你想要的。我试图找到一种方法来仅对对角元素进行索引,但仍然没有成功。
这里有一些方法可以重新排列您的 LUT
和 IMG
:如果 IMG
中的索引为 0-255,第一个平面,第二个平面为 256-511,第三个平面为 512-767,则以下工作,但这会阻止您使用'uint8'
,这可能是个大问题...:
lut2 = lut.reshape(-1,4)
%timeit np.take(lut2,img,axis=0)
# 1 loops, best of 3: 716 ms per loop
# or
%timeit np.take(lut2, img.flatten(), axis=0).reshape(3,4000,4000,4)
# 1 loops, best of 3: 709 ms per loop
在我的机器中,您的解决方案仍然是最佳选择,并且非常合适,因为您只需要对角线求值,即 plane1-plane1、plane2-plane2 和 plane3-plane3:
%timeit for _ in (np.take(lut[j], img[j], axis=0) for j in xrange(planes)) : pass
# 1 loops, best of 3: 677 ms per loop
我希望这可以让您了解更好的解决方案。最好使用 flatten()
寻找更多选项,以及与 np.apply_over_axes()
或 np.apply_along_axis()
类似的方法,这似乎很有希望。
我使用下面的代码生成数据:
import numpy as np
num = 4000
planes, rows, cols, n = 3, num, num, 4
lut = np.random.randint(-2**31, 2**31-1,size=(planes*256*n//4,)).view('uint8')
lut = lut.reshape(planes, 256, n)
img = np.random.randint(-2**31, 2**31-1,size=(planes*rows*cols//4,)).view('uint8')
img = img.reshape(planes, rows, cols)
关于python - 使用 numpy.take 进行更快的花式索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14491480/
作为脚本的输出,我有 numpy masked array和标准numpy array .如何在运行脚本时轻松检查数组是否为掩码(具有 data 、 mask 属性)? 最佳答案 您可以通过 isin
我的问题 假设我有 a = np.array([ np.array([1,2]), np.array([3,4]), np.array([5,6]), np.array([7,8]), np.arra
numpy 是否有用于矩阵模幂运算的内置实现? (正如 user2357112 所指出的,我实际上是在寻找元素明智的模块化减少) 对常规数字进行模幂运算的一种方法是使用平方求幂 (https://en
我已经在 Numpy 中实现了这个梯度下降: def gradientDescent(X, y, theta, alpha, iterations): m = len(y) for i
我有一个使用 Numpy 在 CentOS7 上运行的项目。 问题是安装此依赖项需要花费大量时间。 因此,我尝试 yum install pip install 之前的 numpy 库它。 所以我跑:
处理我想要旋转的数据。请注意,我仅限于 numpy,无法使用 pandas。原始数据如下所示: data = [ [ 1, a, [, ] ], [ 1, b, [, ] ], [ 2,
numpy.random.seed(7) 在不同的机器学习和数据分析教程中,我看到这个种子集有不同的数字。选择特定的种子编号真的有区别吗?或者任何数字都可以吗?选择种子数的目标是相同实验的可重复性。
我需要读取存储在内存映射文件中的巨大 numpy 数组的部分内容,处理数据并对数组的另一部分重复。整个 numpy 数组占用大约 50 GB,我的机器有 8 GB RAM。 我最初使用 numpy.m
处理我想要旋转的数据。请注意,我仅限于 numpy,无法使用 pandas。原始数据如下所示: data = [ [ 1, a, [, ] ], [ 1, b, [, ] ], [ 2,
似乎 numpy.empty() 可以做的任何事情都可以使用 numpy.ndarray() 轻松完成,例如: >>> np.empty(shape=(2, 2), dtype=np.dtype('d
我在大型 numpy 数组中有许多不同的形式,我想使用 numpy 和 scipy 计算它们之间的边到边欧氏距离。 注意:我进行了搜索,这与堆栈中之前的其他问题不同,因为我想获得数组中标记 block
我有一个大小为 (2x3) 的 numpy 对象数组。我们称之为M1。在M1中有6个numpy数组。M1 给定行中的数组形状相同,但与 M1 任何其他行中的数组形状不同。 也就是说, M1 = [ [
如何使用爱因斯坦表示法编写以下点积? import numpy as np LHS = np.ones((5,20,2)) RHS = np.ones((20,2)) np.sum([ np.
假设我有 np.array of a = [0, 1, 1, 0, 0, 1] 和 b = [1, 1, 0, 0, 0, 1] 我想要一个新矩阵 c 使得如果 a[i] = 0 和 b[i] = 0
我有一个形状为 (32,5) 的 numpy 数组 batch。批处理的每个元素都包含一个 numpy 数组 batch_elem = [s,_,_,_,_] 其中 s = [img,val1,val
尝试为基于文本的多标签分类问题训练单层神经网络。 model= Sequential() model.add(Dense(20, input_dim=400, kernel_initializer='
首先是一个简单的例子 import numpy as np a = np.ones((2,2)) b = 2*np.ones((2,2)) c = 3*np.ones((2,2)) d = 4*np.
我正在尝试平均二维 numpy 数组。所以,我使用了 numpy.mean 但结果是空数组。 import numpy as np ws1 = np.array(ws1) ws1_I8 = np.ar
import numpy as np x = np.array([[1,2 ,3], [9,8,7]]) y = np.array([[2,1 ,0], [1,0,2]]) x[y] 预期输出: ar
我有两个数组 A (4000,4000),其中只有对角线填充了数据,而 B (4000,5) 填充了数据。有没有比 numpy.dot(a,b) 函数更快的方法来乘(点)这些数组? 到目前为止,我发现
我是一名优秀的程序员,十分优秀!