jax.numpy.array_split#
- jax.numpy.array_split(ary, indices_or_sections, axis=0)[source]#
将数组拆分为子数组。
JAX 对
numpy.array_split()
的实现。有关详细信息,请参阅
jax.numpy.split()
的文档;array_split
等效于split
,但允许整数indices_or_sections
,它不能均匀地划分拆分轴。示例
>>> x = jnp.array([1, 2, 3, 4, 5, 6, 7, 8, 9]) >>> chunks = jnp.array_split(x, 4) >>> print(*chunks) [1 2 3] [4 5] [6 7] [8 9]
另请参阅
jax.numpy.split()
: 沿任何轴拆分数组。jax.numpy.vsplit()
: 垂直拆分,即沿 axis=0jax.numpy.hsplit()
: 水平拆分,即沿 axis=1jax.numpy.dsplit()
: 深度拆分,即沿 axis=2