Replies: 1 comment 1 reply
-
The HyperGraphData object support |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am working on a chemical reaction network problem. the chemical reaction network is a hypergraph, each node is mol(reactant or product) , each hyperedge indicate chemical reaction rule. I am thinking of constructing the hypergraph data set as HyperGraphData(x=[Data(x=atom_attr, edge_index = edge_index), ..., Data()], hyperedge_index=he_idx, hyperedge_attr= [[Data(x=rule_attr,..), Data(), Data()],...,]) in which hypergraph vertices are Data object for molecules., hyperedge attributes are a list of n by 3 array of rule data object. Can we do something like this? In Hypergraph Data object it states that the x should be tensor.
Beta Was this translation helpful? Give feedback.
All reactions