jax.numpy.split#
- jax.numpy.split(ary, indices_or_sections, axis=0)[源代码]#
将数组分割成子数组。
numpy.split()
的 JAX 实现。- 参数:
ary (ArrayLike) – 要分割的 N 维类数组对象
indices_or_sections (int | Sequence[int] | ArrayLike) –
可以是单个整数或一系列索引。
如果
indices_or_sections
是整数 N,则 N 必须能整除ary.shape[axis]
,并且ary
将沿axis
分成 N 个大小相等的块。如果
indices_or_sections
是一系列整数,则这些整数指定沿axis
的大小不均匀的块之间的边界;请参见下面的示例。
axis (int) – 沿其分割的轴;默认为 0。
- 返回:
一个数组列表。 如果
indices_or_sections
是整数 N,则列表的长度为 N。如果indices_or_sections
是序列 seq,则列表的长度为 len(seq) + 1。- 返回类型:
list[Array]
示例
分割一维数组
>>> x = jnp.array([1, 2, 3, 4, 5, 6, 7, 8, 9])
分成三个相等的部分
>>> chunks = jnp.split(x, 3) >>> print(*chunks) [1 2 3] [4 5 6] [7 8 9]
按索引分割成多个部分
>>> chunks = jnp.split(x, [2, 7]) # [x[0:2], x[2:7], x[7:]] >>> print(*chunks) [1 2] [3 4 5 6 7] [8 9]
沿轴 1 分割二维数组
>>> x = jnp.array([[1, 2, 3, 4], ... [5, 6, 7, 8]]) >>> x1, x2 = jnp.split(x, 2, axis=1) >>> print(x1) [[1 2] [5 6]] >>> print(x2) [[3 4] [7 8]]
另请参阅
jax.numpy.array_split()
: 类似于split
,但允许indices_or_sections
是一个不能均匀分割数组大小的整数。jax.numpy.vsplit()
: 垂直分割,即沿轴=0jax.numpy.hsplit()
: 水平分割,即沿轴=1jax.numpy.dsplit()
: 深度分割,即沿轴=2