ValueError: operands could not be broadcast together with shapes (4661,4736) (4736,4736)
I am trying to do the link prediction task using this tutorial Make Your Own Dataset — DGL 0.9.1post1 documentation
but the above error is showing up.
I am trying to use heterogeneous bipartile graph so the src and dst columns are different so the error is showing up. Any idea to how to bypass the error.
The data is of e-commerce website where the src data is of users and dst data is of products that the user ordered.