├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docs └── nebula-to-dgl.md ├── example ├── homogeneous_graph.yaml ├── nebula_to_dgl_mapper.yaml └── nebulagraph_yelp_dgl_mapper.yaml ├── nebula_dgl ├── __init__.py ├── nebula_exporter.py ├── nebula_loader.py ├── nebula_part_loader.py └── nebula_reduced_loader.py ├── pdm.lock ├── pyproject.toml └── tests └── unit └── nebula_loader.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/README.md -------------------------------------------------------------------------------- /docs/nebula-to-dgl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/docs/nebula-to-dgl.md -------------------------------------------------------------------------------- /example/homogeneous_graph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/example/homogeneous_graph.yaml -------------------------------------------------------------------------------- /example/nebula_to_dgl_mapper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/example/nebula_to_dgl_mapper.yaml -------------------------------------------------------------------------------- /example/nebulagraph_yelp_dgl_mapper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/example/nebulagraph_yelp_dgl_mapper.yaml -------------------------------------------------------------------------------- /nebula_dgl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/nebula_dgl/__init__.py -------------------------------------------------------------------------------- /nebula_dgl/nebula_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/nebula_dgl/nebula_exporter.py -------------------------------------------------------------------------------- /nebula_dgl/nebula_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/nebula_dgl/nebula_loader.py -------------------------------------------------------------------------------- /nebula_dgl/nebula_part_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/nebula_dgl/nebula_part_loader.py -------------------------------------------------------------------------------- /nebula_dgl/nebula_reduced_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/nebula_dgl/nebula_reduced_loader.py -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/pdm.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/unit/nebula_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wey-gu/nebula-dgl/HEAD/tests/unit/nebula_loader.py --------------------------------------------------------------------------------