jax.numpy.split#
- jax.numpy.split(ary, indices_or_sections, axis=0)[源代码][源代码]#
将一个数组分割成子数组。
JAX 实现的
numpy.split()
。- 参数:
- 返回:
数组的列表。如果
indices_or_sections
是一个整数 N,那么列表的长度为 N。如果indices_or_sections
是一个序列 seq,那么列表的长度为 len(seq) + 1。- 返回类型:
示例
分割一个一维数组:
>>> 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()
: 水平分割,即沿 axis=1 分割jax.numpy.dsplit()
:按深度分割,即沿 axis=2 分割