6 个仓库
Neural network layers specifically designed for graph-structured data using message passing.
Distinct from Convolution Layers: Specifically for graph-structured data, whereas convolution layers typically refer to grid-based data like images.
Explore 6 awesome GitHub repositories matching artificial intelligence & ml · Graph. Refine with filters or upvote what's useful.
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
Implements neural network layers that apply message passing to graph structures to learn node and edge representations.
This is a graph convolutional network library designed for performing node and graph classification on graph-structured data. It functions as a framework for generating graph embeddings and implementing spectral convolutional neural networks to predict labels for nodes and entire graph structures. The library provides specialized tools for spectral graph convolutions, utilizing Chebyshev polynomial approximations to perform feature aggregation. It includes a multi-graph processing framework that manages batches of different graph instances through block-diagonal adjacency matrices and pooling
Aggregates neighborhood features using spectral convolutions or Chebyshev polynomial approximations within neural network layers.
pygcn 是一个用于实现图卷积网络(GCN)的 PyTorch 库和框架。它提供了用于半监督节点分类和从图结构数据生成节点嵌入的工具。 该系统根据邻域模式和局部相似性将图节点转换为低维向量。它通过利用少量标记示例和整体图拓扑结构,实现节点标签的预测。 该库涵盖了关系数据分析和半监督图学习。它包括用于消息传递、邻接变换和对称归一化的计算原语。
A collection of PyTorch implementations for building and training graph convolutional networks on graph-structured data.
Neuraloperator is a library for learning mappings between infinite-dimensional function spaces, serving as a tool to accelerate physics simulations and partial differential equation solving. It implements resolution-invariant models and spectral neural networks that can produce consistent predictions regardless of the input grid resolution or spatial discretization. The framework incorporates physics-informed neural networks that enforce physical constraints and differential equations through specialized loss functions. It utilizes Fourier transforms and spectral projections to process multid
Utilizes Fourier transforms and spectral projections to process multidimensional scientific data and velocity fields.
Cnn_graph is a graph convolutional network framework and graph signal processing library designed for machine learning research. It provides computational notebooks and code to process and classify graph-structured data by combining node features with an underlying adjacency matrix representation. The framework performs spectral graph convolutions through localized filters and accelerates filtering operations using truncated Chebyshev polynomials to avoid explicit graph Laplacian diagonalization. It includes a graph-structured data pipeline and sparse adjacency representations to handle irreg
Performs convolution operations on graph structures by applying localized spectral filters defined through graph Laplacian eigen decomposition.
This repository serves as an educational resource for implementing graph neural networks using Python. It provides a collection of structured code examples and tutorials designed to guide developers through the process of building and training machine learning models that operate on complex, interconnected datasets. The project covers the core mechanics of graph-based deep learning, including message-passing architectures, feature aggregation, and the stacking of convolutional layers. It demonstrates how to represent non-Euclidean data as static graphs and how to manage memory during training
Builds deep learning models by layering operations that perform localized spectral or spatial filtering across graph-structured data.