bowrango / ClashRoyale

An effort to understand the complex meta within the Clash Royale universe through web scraping and data analysis
3 stars 1 forks source link

optimize node2vec with networkx #20

Open bowrango opened 3 years ago

bowrango commented 3 years ago

NetworkX is object orientated, requiring a pointer from one node to the next. When performing random walks, this becomes very expensive.

NetworkX can be kept to model the graph structures, but should be converted to CSR format before creating embeddings.

See: https://github.com/VHRanger/nodevectors