-
Notifications
You must be signed in to change notification settings - Fork 5.8k
[Typing] 修改一些示例代码中的类型错误 part 2 #65463
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -80,7 +80,7 @@ def graph_khop_sampler( | |||
>>> colptr = paddle.to_tensor(colptr, dtype="int64") | |||
>>> nodes = paddle.to_tensor(nodes, dtype="int64") | |||
|
|||
>>> edge_src, edge_dst, sample_index, reindex_nodes = paddle.incubate.graph_khop_sampler(row, colptr, nodes, sample_sizes, False) | |||
>>> edge_src, edge_dst, sample_index, reindex_nodes = paddle.incubate.graph_khop_sampler.graph_khop_sampler(row, colptr, nodes, sample_sizes, False) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这段示例代码跑不了 ~ 🫠 我把它复原吧 ~
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这段代码也有问题 ~ 造孽啊 ... ...
Update 20240626 |
PR Category
Others
PR Types
Others
Description
关联 PR #65008 #65397
@SigureMo