Skip to content
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

Jaccard indices #49

Open
orrrrtem opened this issue Jul 24, 2019 · 2 comments
Open

Jaccard indices #49

orrrrtem opened this issue Jul 24, 2019 · 2 comments

Comments

@orrrrtem
Copy link

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

@ogreen
Copy link
Collaborator

ogreen commented Jul 24, 2019

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

@orrrrtem
Copy link
Author

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants