We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 372172e commit 9f976dcCopy full SHA for 9f976dc
examples/data/ogbl_collab.py
@@ -32,7 +32,7 @@
32
node_feat = graph['node_feat'] # shape(235868, 128)
33
34
# dump to disk
35
-root = 'ogbl_collab'
+root = 'ogbl_collab/'
36
train_table = root + 'ogbl_collab_train_edge'
37
val_table = root + 'ogbl_collab_val_edge'
38
test_table = root + 'ogbl_collab_test_edge'
@@ -73,4 +73,4 @@
73
f.write('src_id:int64' + '\t' + 'dst_id:int64' + '\t' + 'weight:double\n')
74
for i in range(len(test_edge['edge_neg'])):
75
f.write(str(test_edge['edge_neg'][i, 0]) + '\t' + str(test_edge['edge_neg'][i, 1])
76
- + '\t' + '1.0\n')
+ + '\t' + '1.0\n')
0 commit comments