jax.numpy.split

内容

jax.numpy.split#

jax.numpy.split(ary, indices_or_sections, axis=0)[source]#

将数组分割成子数组。

JAX 实现 numpy.split().

参数:
  • 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]]

另请参阅