Sampling#

Random Walks#

cugraph.ego_graph(G, n[, radius, center, ...])

Compute the induced subgraph of neighbors centered at node n, within a given radius.

cugraph.uniform_neighbor_sample(G, ...[, ...])

Does neighborhood sampling, which samples nodes from a graph based on the current node's neighbors, with a corresponding fanout value at each hop.

Node2Vec#