説明
This GitHub repository hosts the official implementation of the Simplifying Graph Convolutional Networks (SGC) model, as detailed in the ICML2019 paper. SGC is an advancement in Graph Convolutional Networks (GCNs) that simplifies the architecture by removing nonlinearities and collapsing weight matrices. This transformation results in a linear model that retains competitive performance while drastically reducing training time and computational resources.
The implementation supports various graph datasets, including citation networks like Cora, Citeseer, and Pubmed, as well as social networks such as Reddit. For citation networks, the model achieves notable accuracy, for instance, 81.0% on Cora, 71.9% on Citeseer, and 78.9% on Pubmed, with training times as low as 0.13 seconds on a GTX 1080 Ti. For the Reddit dataset, it achieves an F1 score of 94.9% in 2.7 seconds.
The repository includes code for data preprocessing, model definition, training, and evaluation. It also provides guidance on hyperparameter tuning, particularly for weight decay, using tools like hyperopt. Practical advice is offered, such as normalizing features to have zero mean and standard deviation one to accelerate convergence, a technique beneficial for SGC and other linear models.
Beyond the core implementation, the repository points to additional resources and reference implementations in popular libraries like Deep Graph Library (DGL), PyTorch Geometric, Spektral, StellarGraph, and tf_geometric. It also features a work-in-progress branch for ablation studies and code for downstream tasks, starting with text classification. This project is a valuable resource for researchers and practitioners looking to leverage efficient and effective graph neural network models.
Simplifying Graph Convolutional Networksのハイライト
Official implementation of the Simplifying Graph Convolutional Networks (SGC) paper.
Streamlined Graph Convolutional Network (GCN) architecture.
Removes nonlinearities and collapses weight matrices for a linear model.
Significantly reduced training time compared to traditional GCNs.
Achieves competitive performance on benchmark datasets.
Supports citation networks (Cora, Citeseer, Pubmed) and social networks (Reddit).
Includes code for data preprocessing, model training, and evaluation.
Provides guidance on hyperparameter tuning.
Offers practical advice on feature normalization for accelerated convergence.
Codebase for downstream tasks, including text classification.
References to implementations in popular GNN libraries.
Simplifying Graph Convolutional Networksをはじめる
Access model: Clone the GitHub repository.
Set up environment: Install dependencies using `pip install -r requirements.txt`.
Prepare data: Download the Reddit dataset and place it in the `data/` directory.
Train for citation networks: Run `python citation.py --dataset [dataset_name] --tuned`.
Train for Reddit: Run `python reddit.py --inductive --test`.
Integrate: Adapt the provided scripts for custom datasets or downstream tasks.
Simplifying Graph Convolutional Networksの使用例
- Node Classification
- Text Classification
- Graph Feature Learning
- Efficient GNN Training
- Benchmarking GNNs







