jax.numpy.setdiff1d#
- jax.numpy.setdiff1d(ar1, ar2, assume_unique=False, *, size=None, fill_value=None)[源代码]#
计算两个一维数组的集合差。
numpy.setdiff1d()
的 JAX 实现。由于
setdiff1d
的输出大小取决于数据,因此该函数通常与jit()
和其他 JAX 转换不兼容。JAX 版本添加了可选的size
参数,必须静态指定该参数,才能在这些上下文中使用jnp.setdiff1d
。- 参数:
ar1 (ArrayLike) – 第一个数组,从中查找差集元素。
ar2 (ArrayLike) – 第二个数组,用于计算差集。
assume_unique (bool) – 如果为 True,则假定输入数组包含唯一值。这可以实现更高效的实现,但如果
assume_unique
为 True 且输入数组包含重复项,则行为未定义。默认值:False。size (int | None | None) – 如果指定,则仅返回前
size
个排序元素。如果元素的数量少于size
指示的数量,则返回值将用fill_value
填充。fill_value (ArrayLike | None | None) – 当指定了
size
并且元素数量少于指示的数量时,用fill_value
填充剩余的条目。默认为最小值。
- 返回:
即
ar1
中不包含在ar2
中的元素。- 返回类型:
一个数组,包含输入数组中元素的集合差
另请参阅
jax.numpy.intersect1d()
:两个 1D 数组的集合交集。jax.numpy.setxor1d()
:两个 1D 数组的集合异或。jax.numpy.union1d()
:两个 1D 数组的集合并集。
示例
计算两个数组的集合差
>>> ar1 = jnp.array([1, 2, 3, 4]) >>> ar2 = jnp.array([3, 4, 5, 6]) >>> jnp.setdiff1d(ar1, ar2) Array([1, 2], dtype=int32)
由于输出形状是动态的,这将会在
jit()
和其他转换下失败>>> jax.jit(jnp.setdiff1d)(ar1, ar2) Traceback (most recent call last): ... ConcretizationTypeError: Abstract tracer value encountered where concrete value is expected: traced array with shape int32[4]. The error occurred while tracing the function setdiff1d at /Users/vanderplas/github/jax-ml/jax/jax/_src/numpy/setops.py:64 for jit. This concrete value was not available in Python because it depends on the value of the argument ar1.
为了确保静态已知的输出形状,您可以传递一个静态的
size
参数>>> jit_setdiff1d = jax.jit(jnp.setdiff1d, static_argnames=['size']) >>> jit_setdiff1d(ar1, ar2, size=2) Array([1, 2], dtype=int32)
如果
size
太小,则差集将被截断>>> jit_setdiff1d(ar1, ar2, size=1) Array([1], dtype=int32)
如果
size
太大,则输出将用fill_value
填充>>> jit_setdiff1d(ar1, ar2, size=4, fill_value=0) Array([1, 2, 0, 0], dtype=int32)