jax.numpy.hsplit#
- jax.numpy.hsplit(ary, indices_or_sections)[source]#
水平分割数组成子数组。
JAX 实现
numpy.hsplit()
.请参阅
jax.numpy.split()
的文档以了解详细信息。hsplit
等效于split
且axis=1
,或对于一维数组axis=0
。示例
一维数组
>>> x = jnp.array([1, 2, 3, 4, 5, 6]) >>> x1, x2 = jnp.hsplit(x, 2) >>> print(x1, x2) [1 2 3] [4 5 6]
二维数组
>>> x = jnp.array([[1, 2, 3, 4], ... [5, 6, 7, 8]]) >>> x1, x2 = jnp.hsplit(x, 2) >>> print(x1) [[1 2] [5 6]] >>> print(x2) [[3 4] [7 8]]
另请参阅
jax.numpy.split()
:沿任何轴分割数组。jax.numpy.vsplit()
:垂直分割,即沿 axis=0jax.numpy.dsplit()
:深度分割,即沿 axis=2jax.numpy.array_split()
:类似于split
,但允许indices_or_sections
为一个整数,该整数不能均匀地划分数组的大小。