Skip to content

Latest commit

 

History

History
53 lines (41 loc) · 1.66 KB

README_en.md

File metadata and controls

53 lines (41 loc) · 1.66 KB

Distributed DeepGCNs

English | 简体中文

This is a distributed DeepGCNs model implemented and improved by High-Flyer AI. It can use multiple GPUs to achieve training acceleration.

DeepGCNs borrow concepts from CNNs, and mainly adapt residual/dense connections and dilated convolutions to GCN architectures.

Reference papers:

Requirements

Training

The raw data is from the public dataset, Open Graph Benchmark , which is integrated into the high-flyer dataset warehouse, hfai.datasets.

  1. Node Property Prediction (ogbn-proteins)

    submit the task to Yinghuo HPC:

     hfai python ogbn_proteins/main.py -- -n 1

    run locally:

     python ogbn_proteins/main.py
  2. Link Property Prediction (ogbl-collab)

    submit the task to Yinghuo HPC:

     hfai python ogbl_collab/main.py -- -n 1

    run locally:

     python ogbl_collab/main.py
  3. Graph Property Prediction (ogbg-ppa)

    submit the task to Yinghuo HPC:

     hfai python ogbg_ppa/main.py -- -n 1

    run locally:

     python ogbg_ppa/main.py