dgl.graphbolt.exclude_seed_edges

dgl.graphbolt.exclude_seed_edges(minibatch: MiniBatch, include_reverse_edges: bool = False, reverse_etypes_mapping: Dict[str, str] | None = None, async_op: bool = False)[source]

Exclude seed edges with or without their reverse edges from the sampled subgraphs in the minibatch.

Parameters:
  • minibatch (MiniBatch) – The minibatch.

  • include_reverse_edges (bool) – Whether reverse edges should be excluded as well. Default is False.

  • reverse_etypes_mapping (Dict[str, str] = None) – The mapping from the original edge types to their reverse edge types.

  • async_op (bool) – Boolean indicating whether the call is asynchronous. If so, the result can be obtained by calling wait on the modified sampled_subgraphs.