jax.random.orthogonal

内容

jax.random.orthogonal#

jax.random.orthogonal(key, n, shape=(), dtype=<class 'float'>)[source]#

从正交群 O(n) 中均匀采样。

如果 dtype 是复数,则从酉群 U(n) 中均匀采样。

参数:
  • **key** (KeyArrayLike) – 用作随机键的 PRNG 键。

  • **n** (int) – 表示结果维度的整数。

  • **shape** (Shape) – 可选,结果的批次维度。默认为 ()。

  • **dtype** (DTypeLikeFloat) – 可选,返回值的浮点 dtype(如果 jax_enable_x64 为 true,则默认为 float64,否则为 float32)。

返回值:

形状为 (*shape, n, n) 且 dtype 指定的随机数组。

返回类型:

数组

参考资料