Skip to content

Instantly share code, notes, and snippets.

View justanotherminh's full-sized avatar
🙉

Luong-Minh Nguyen justanotherminh

🙉
  • Microsoft
  • North Carolina
View GitHub Profile
@dgleich
dgleich / pprcd.py
Last active October 15, 2020 03:13
Personalized PageRank community detection
import collections
import sys
# setup the graph
G = {
1:set([ 2, 3, 5, 6,]),
2:set([ 1, 4,]),
3:set([ 1, 6, 7,]),
4:set([ 2, 5, 7, 8,]),
5:set([ 1, 4, 6, 8, 9, 10,]),