Skip to content

Commit

Permalink
Fix Flickr
Browse files Browse the repository at this point in the history
  • Loading branch information
danielegrattarola committed Jan 21, 2024
1 parent bf60714 commit a5fa5e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spektral/datasets/flickr.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def read(self):
f = np.load(osp.join(self.path, "adj_full.npz"))
a = sp.csr_matrix((f["data"], f["indices"], f["indptr"]), f["shape"])

x = np.load(osp.join(self.path, "feats.npy"))
x = np.load(osp.join(self.path, "feats.npy"), allow_pickle=True)

if self.normalize_x:
print("Pre-processing node features")
Expand Down

0 comments on commit a5fa5e3

Please sign in to comment.