jax.numpy.vsplit#

jax.numpy.vsplit(ary, indices_or_sections)[源代码]#

将数组垂直分割成子数组。

numpy.vsplit() 的 JAX 实现。

有关详细信息,请参阅 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]