jax.numpy.ones

目录

jax.numpy.ones#

jax.numpy.ones(shape, dtype=None, *, device=None)[源代码][源代码]#

创建一个充满1的数组。

JAX 实现的 numpy.ones()

参数:
  • shape (Any) – 指定创建数组形状的整数或整数序列。

  • dtype (DTypeLike | None) – 创建数组的可选数据类型;默认为浮点型。

  • device (xc.Device | Sharding | None) – (可选) DeviceSharding ,创建的数组将被提交到该设备或分片。

返回:

指定形状和数据类型的数组,如果指定,则在指定设备上。

返回类型:

Array

示例

>>> jnp.ones(4)
Array([1., 1., 1., 1.], dtype=float32)
>>> jnp.ones((2, 3), dtype=bool)
Array([[ True,  True,  True],
       [ True,  True,  True]], dtype=bool)