ARGA icon indicating copy to clipboard operation
ARGA copied to clipboard

some bug in code

Open Zhonny opened this issue 3 years ago • 0 comments

1 . change all_edge_idx = range(edges.shape[0]) to all_edge_idx = list(range(edges.shape[0])) in preprocessing.py 2 . change objects.append(pkl.load(open("data/ind.{}.{}".format(dataset, names[i])))) to objects.append(pkl.load(open("data/ind.{}.{}".format(dataset, names[i]),'rb'),encoding='latin1')) in input_data.py

Zhonny avatar Oct 08 '21 07:10 Zhonny