Amitoz Azad
Results
2
comments of
Amitoz Azad
@justanhduc are you ready with this feature ? Can I try it ? I am in dire need of this feature! Best of luck ! @rusty1s As per now is...
The code to generate the txt files : ```python import torch import torch_geometric graph = torch_geometric.datasets.Planetoid(root='../', name='cora')[0] f = open("net.txt","w") for i in range(graph.edge_index.shape[1]): f.write(str(graph.edge_index[0,i].item())+"\t"+str(graph.edge_index[1,i].item())+"\t"+"1"+"\n") f = open("label.txt","w") for i...