-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
Splited datas by 'RandomLinkSplit' have duplicated information. #6571
Comments
I am happy to include this via an additional flag, such as |
'keep_attrs' seems not to be in 'RandomLinkSplit''s arguments. |
Yes, I mean we would need to work on including this :) |
Ah ! I misunderstood :) |
Do you have interest in contributing this? It isn't super high prio for me, so I would appreciate some help. |
Yes ! I am interested in contributing for this. Can you guide me about the process which improve this? |
Did you take a look at |
🛠 Proposed Refactor
I found a something inefficient point in 'RandomLinkSplit'.
I think node feature (data.x) and edge information (data.edge_index) are not neccesary for all splited data class.
Just one data class only have to get the node feature and edge information.
Suggest a potential alternative/fix
How about change the output of function to yield only 'label' and 'splited edge index' like below?
Input on this function already have node feature and entire edge information.
The text was updated successfully, but these errors were encountered: