Skip to content

Latest commit

 

History

History
62 lines (36 loc) · 4.46 KB

File metadata and controls

62 lines (36 loc) · 4.46 KB
graph LR
    GAT_Model_Core["GAT Model Core"]
    GATv2_Model_Core["GATv2 Model Core"]
    GAT_Experiment_Management["GAT Experiment Management"]
    GATv2_Experiment_Management["GATv2 Experiment Management"]
    GAT_Experiment_Management -- "instantiates and trains" --> GAT_Model_Core
    GATv2_Experiment_Management -- "instantiates and trains" --> GATv2_Model_Core
Loading

CodeBoardingDemoContact

Details

The Graph Neural Networks subsystem focuses on implementing and experimenting with Graph Attention Networks (GAT) and its improved version, GATv2.

GAT Model Core

Implements the core Graph Attention Network (GAT) architecture, defining the neural network layers and attention mechanisms for processing graph-structured data.

Related Classes/Methods:

GATv2 Model Core

Implements the core GATv2 architecture, an enhanced version of GAT, providing improved attention mechanisms for graph data.

Related Classes/Methods:

GAT Experiment Management

Orchestrates the entire lifecycle of a GAT experiment. This includes loading configurations, handling the Cora dataset, instantiating the GAT model, managing the training and evaluation loops, and logging experiment results.

Related Classes/Methods:

GATv2 Experiment Management

Manages the complete lifecycle of a GATv2 experiment. This component is responsible for loading configurations, instantiating the GATv2 model, and executing the training and evaluation phases.

Related Classes/Methods: