You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can not find source files for Jaccard indices algorithm which is in the list of algorithms in readme.md.
Tell me, please, do you have an implementation of Jaccard indices? If so, where can I find it?
Best regards,
Artem
The text was updated successfully, but these errors were encountered:
We currently do not have an implementation for Jaccard.
Specifically, Jaccard is computationally intense as it requires intersecting for |V|^2 vertex pairs.
If your graph is big (enough), then |V|^2 won't fit in the memory, but you can work on subset of the vertex of the pairs using one Hornet's primitives: https://github.com/hornet-gt/hornet/blob/master/primitives/Operator%2B%2B.i.cuh#L378
Hello,
I can not find source files for Jaccard indices algorithm which is in the list of algorithms in readme.md.
Tell me, please, do you have an implementation of Jaccard indices? If so, where can I find it?
Best regards,
Artem
The text was updated successfully, but these errors were encountered: