This is a sample of my HeteroData
HeteroData(
object={ x=[21, 2048] },
attribute={ x=[60, 2048] },
(object, relationships_a, object)={
edge_index=[2, 12],
edge_attr=[12, 2048],
},
(object, relationships_b, object)={
edge_index=[2, 24],
edge_attr=[24, 2048],
}
)
Is there a way to use the HeteroConv wrapper to define different operators to process (object, relationships_a, object) and (object, relationships_b, object) and then apply a DeepGCNLayer layer on top of it to use residual connection functionality?