I think you may forget to release the data_origin.pos code in the supernode_generation.py file, and so that the later process can't be continued. Could you please fix the bug?
https://github.com/taliq/TEA-graph/blob/56cc31b86e82e78791c2915af74463d9fd50cbb4/Superpatch_network_construction/supernode_generation.py#L405
This way, I guess the data must conclude pos information. How could I get the right data object?
I want to use the following code:
pos = torch.tensor(coordinate_integrate, dtype=torch.float) data = Data(x=x, edge_index=edge_index, pos=pos)
Did you deal with it similarly?
I think you may forget to release the data_origin.pos code in the supernode_generation.py file, and so that the later process can't be continued. Could you please fix the bug? https://github.com/taliq/TEA-graph/blob/56cc31b86e82e78791c2915af74463d9fd50cbb4/Superpatch_network_construction/supernode_generation.py#L405 This way, I guess the data must conclude pos information. How could I get the right data object? I want to use the following code:
pos = torch.tensor(coordinate_integrate, dtype=torch.float) data = Data(x=x, edge_index=edge_index, pos=pos)
Did you deal with it similarly?