indices = drug_graph.nonzero() AttributeError: 'SparseMatrix' object has no attribute 'nonzero'
时间: 2023-09-20 14:05:05 浏览: 90
torch_sparse-0.6.18-cp39-cp39-macosx_11_0_x86_64whl.zip
这个错误是因为 `SparseMatrix` 对象没有 `nonzero` 属性。如果你想要获取稀疏矩阵中非零元素的位置,可以使用 `nonzero()` 方法,而不是属性。例如:
```
row_indices, col_indices = drug_graph.nonzero()
```
这将返回稀疏矩阵中所有非零元素的行索引和列索引,分别存储在 `row_indices` 和 `col_indices` 中。
阅读全文