gpt4 book ai didi

python - numpy.tile 的 dask 等价物是什么?

转载 作者:行者123 更新时间:2023-11-28 18:30:14 25 4
gpt4 key购买 nike

Dask ( http://dask.pydata.org/en/latest/array-api.html ) 是一个灵活的并行计算库,用于分析。与 Numpy 相比,它可以扩展到大数据,并且有许多类似的方法。如何在 dask 数组上实现与 numpy.tile 相同的效果?

最佳答案

使用 dask.array.concatenate()可能是一种可行的解决方法。

NumPy 中的演示:

In [374]: x = numpy.arange(4).reshape((2, 2))

In [375]: x
Out[375]:
array([[0, 1],
[2, 3]])

In [376]: n = 3

In [377]: numpy.tile(x, n)
Out[377]:
array([[0, 1, 0, 1, 0, 1],
[2, 3, 2, 3, 2, 3]])

In [378]: numpy.concatenate([x for i in range(n)], axis=1)
Out[378]:
array([[0, 1, 0, 1, 0, 1],
[2, 3, 2, 3, 2, 3]])

关于python - numpy.tile 的 dask 等价物是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38054970/

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