怎么理解torch_geometric中的dense_to_sparse()方法?
官方文档对方法进行以下描述:
"Converts a dense adjacency matrix to a sparse adjacency matrix defined
by edge indices and edge attributes."
assert tensor.dim() == 2
index = tensor.nonzero().t().contiguous()
value = tensor[index[0], index[1]]
return index, value
我想知道将稠密邻接矩阵转换为稀疏邻接矩阵的意义是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论