3 مستودعات
Techniques for representing and learning from graphs containing multiple types of nodes and edges.
Distinct from Graph Data Models: Focuses on the neural modeling of diverse entity types, rather than database storage or workflow orchestration.
Explore 3 awesome GitHub repositories matching artificial intelligence & ml · Heterogeneous Graph Modeling. 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
Provides specialized support for representing and learning from graphs with multiple types of nodes and edges.
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
Processes graphs with multiple node and edge types to model complex real-world entities.
GraphTransformerNetworks is a graph neural network framework implemented in PyTorch for learning structural representations and performing classification tasks on complex heterogeneous graphs and relational networks. The project provides automated preprocessing pipelines to transform raw graph datasets into standardized formats, alongside model training, forward passes, and gradient backpropagation executed through dynamic tensor operations. The architecture incorporates self-attention mechanisms applied directly to graph structures to learn contextual representations of nodes and edges ac
Transforms raw graph datasets into standardized formats suitable for network training using automated preprocessing pipelines.