Skip to content

Commit 9f976dc

Browse files
committed
fix typo in ogbl_collab.py.
1 parent 372172e commit 9f976dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/data/ogbl_collab.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
node_feat = graph['node_feat'] # shape(235868, 128)
3333

3434
# dump to disk
35-
root = 'ogbl_collab'
35+
root = 'ogbl_collab/'
3636
train_table = root + 'ogbl_collab_train_edge'
3737
val_table = root + 'ogbl_collab_val_edge'
3838
test_table = root + 'ogbl_collab_test_edge'
@@ -73,4 +73,4 @@
7373
f.write('src_id:int64' + '\t' + 'dst_id:int64' + '\t' + 'weight:double\n')
7474
for i in range(len(test_edge['edge_neg'])):
7575
f.write(str(test_edge['edge_neg'][i, 0]) + '\t' + str(test_edge['edge_neg'][i, 1])
76-
+ '\t' + '1.0\n')
76+
+ '\t' + '1.0\n')

0 commit comments

Comments
 (0)