jax.random.orthogonal#

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

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

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

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

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

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

  • dtype (DTypeLikeFloat) – 可选,返回值的浮点数据类型(如果 jax_enable_x64 为真,则默认为 float64,否则为 float32)。

返回值:

一个形状为 (*shape, n, n) 且指定数据类型的随机数组。

返回类型:

数组

参考文献