jax.experimental.sparse.coo_fromdense

jax.experimental.sparse.coo_fromdense#

jax.experimental.sparse.coo_fromdense(mat, *, nse=None, index_dtype=<class 'jax.numpy.int32'>)[源代码][源代码]#

从密集矩阵创建一个COO格式的稀疏矩阵。

参数:
  • mat (Array) – 要转换为 COO 的数组。

  • nse (int | None) – mat 中指定条目的数量。如果未指定,将从输入矩阵中计算。

  • index_dtype (DTypeLike) – 稀疏索引的 dtype

返回:

矩阵的COO表示法。

返回类型:

mat_coo