jax.numpy.vsplit

内容

jax.numpy.vsplit#

jax.numpy.vsplit(ary, indices_or_sections)[source]#

将数组垂直拆分为子数组。

JAX 实现的 numpy.vsplit().

有关详细信息,请参阅 jax.numpy.split() 的文档;vsplit 等效于 split,其中 axis=0

示例

1D 数组

>>> x = jnp.array([1, 2, 3, 4, 5, 6])
>>> x1, x2 = jnp.vsplit(x, 2)
>>> print(x1, x2)
[1 2 3] [4 5 6]

2D 数组

>>> x = jnp.array([[1, 2, 3, 4],
...                [5, 6, 7, 8]])
>>> x1, x2 = jnp.vsplit(x, 2)
>>> print(x1, x2)
[[1 2 3 4]] [[5 6 7 8]]

参见

参数:
  • ary (ArrayLike)

  • indices_or_sections (int | Sequence[int] | ArrayLike)

返回类型:

list[Array]