3 مستودعات
Retrieval of representative subsets of nodes and edges to enable training on large-scale graphs.
Distinct from Statistical Sampling: Specializes statistical sampling specifically for graph topologies (nodes/edges) to handle scale.
Explore 3 awesome GitHub repositories matching data & databases · Graph Neighborhood Sampling. Refine with filters or upvote what's useful.
PyTorch Geometric is a library for building and training machine learning models on graph-structured data. It provides a framework for developing graph neural networks, including a specialized system for implementing node-to-node information exchange via customizable message passing, aggregation, and update functions. The library includes a sparse data processing toolkit that utilizes accelerated CPU and CUDA kernels to perform efficient reductions on large sparse datasets. It supports the creation of specialized architectures for structured data such as 3D meshes and point clouds. The proje
Extracts representative sub-sections of massive graphs to enable training on datasets that exceed system memory.
DGL is a Python library for building and training graph neural networks. It functions as a graph message passing framework and a geometric deep learning tool, enabling the development of models that analyze graph-structured data. The library is designed for large-scale graph processing, utilizing distributed training and neighbor sampling to handle datasets with billions of edges. It provides specialized support for heterogeneous graph modeling, allowing for the representation of complex real-world entities with multiple node and edge types. Its capabilities cover a wide range of graph tasks
Extracts subsets of nodes and edges using neighbor or layer-wise sampling to enable training on large-scale graphs.
Graph-learn is a distributed graph processing engine and graph neural network framework designed for large-scale graph data. It provides specialized query interfaces to extract training subgraphs and node neighborhoods, enabling the construction and training of complex graph neural network models on massive datasets. The system integrates a real-time inference server to serve live predictions by sampling dynamic graphs with low latency while processing streaming graph updates. The project features a C++ core engine integration that executes graph sampling and tensor operations natively, coupl
Extracts training subgraphs and node neighborhoods using specialized query interfaces for graph models.