-
Hi Matt, I would like to draw my mesh dataset using https://plotly.com/python/3d-mesh/ I think in that example, Also, I guess |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
There is no easy way to convert the You are right that PyG represents graphs in a COO format. CSR denotes a compressed representation of this, where values are sorted by source node index, and only node-wise offsets are stored. We support this format via the |
Beta Was this translation helpful? Give feedback.
There is no easy way to convert the
edge_index
representation to a mesh representation of faces. Therefore, it is best to simply keep your mesh data for visualization while converting it to theedge_index
representation for neural network processing.You are right that PyG represents graphs in a COO format. CSR denotes a compressed representation of this, where values are sorted by source node index, and only node-wise offsets are stored. We support this format via the
SparseTensor
class.