"vscode:/vscode.git/clone" did not exist on "08a71271b2c778fb79cc47b8213203432bf1dc1e"
Unverified Commit 241760a5 authored by Andrzej Kotłowski's avatar Andrzej Kotłowski Committed by GitHub
Browse files

[Graphbolt] Fix link_prediction example (#6397)


Co-authored-by: default avatarHongzhi (Steve), Chen <chenhongzhi.nkcs@gmail.com>
parent cc079e1c
......@@ -36,6 +36,7 @@ Contributors
* [Michal Szarmach](https://github.com/mszarma) from Intel
* [Izabela Mazur](https://github.com/IzabelaMazur) from Intel
* [Sanchit Misra](https://github.com/sanchit-misra) from Intel
* [Andrzej Kotlowski](https://github.com/anko-intel) from Intel
* [Sheng Zha](https://github.com/szha) from AWS
* [Yifei Ma](https://github.com/yifeim) from AWS
* [Yizhi Liu](https://github.com/yzhliu) from AWS
......
......@@ -169,7 +169,7 @@ def create_dataloader(args, graph, features, itemset, is_train=True):
############################################################################
# [Step-4]:
# gb.to_dgl()
# datapipe.to_dgl()
# [Input]:
# 'datapipe': The previous datapipe object.
# [Output]:
......@@ -177,7 +177,7 @@ def create_dataloader(args, graph, features, itemset, is_train=True):
# [Role]:
# Convert a mini-batch to dgl-minibatch.
############################################################################
datapipe = gb.to_dgl()
datapipe = datapipe.to_dgl()
############################################################################
# [Input]:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment