You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 508 B

4 years ago
4 years ago
4 years ago
4 years ago
123456789101112131415
  1. from ....backend import DependentBackend
  2. if DependentBackend.is_pyg():
  3. from .node_classification_sampled_trainer import (
  4. NodeClassificationGraphSAINTTrainer,
  5. NodeClassificationLayerDependentImportanceSamplingTrainer,
  6. NodeClassificationNeighborSamplingTrainer
  7. )
  8. __all__ = [
  9. "NodeClassificationGraphSAINTTrainer",
  10. "NodeClassificationLayerDependentImportanceSamplingTrainer",
  11. "NodeClassificationNeighborSamplingTrainer"
  12. ]
  13. else:
  14. __all__ = []