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
If specify both parameters, `batch_size` takes priority.
232
232
. It picks a specified number (`num_neighbors`) of neighbors of each seed at random.
233
233
. It picks the same number of neighbors for each neighbor, and repeats this process until it finished performing a specified number of hops (`num_hops`).
234
-
234
+
235
235
This generates one subgraph.
236
236
As you loop through this data loader, every vertex will at some point be chosen as a seed and you will get the subgraph
237
237
expanded from the seeds.
@@ -949,7 +949,7 @@ def edgeNeighborLoader(
949
949
If specify both parameters, `batch_size` takes priority.
950
950
. Starting from the vertices attached to the seed edges, it picks a specified number (`num_neighbors`) of neighbors of each vertex at random.
951
951
. It picks the same number of neighbors for each neighbor, and repeats this process until it finished performing a specified number of hops (`num_hops`).
952
-
952
+
953
953
This generates one subgraph.
954
954
As you loop through this data loader, every edge will at some point be chosen as a seed and you will get the subgraph
955
955
expanded from the seeds.
@@ -1379,7 +1379,7 @@ def hgtLoader(
1379
1379
If specify both parameters, `batch_size` takes priority.
1380
1380
. It picks a specified number of neighbors of each type (as specified by the dict `num_neighbors`) of each seed at random.
1381
1381
. It picks the specified number of neighbors of every type for each neighbor, and repeats this process until it finished performing a specified number of hops (`num_hops`).
1382
-
1382
+
1383
1383
This generates one subgraph.
1384
1384
As you loop through this data loader, every vertex will at some point be chosen as a seed and you will get the subgraph
0 commit comments