Skip to contentScholarGate
LibraryBookshelfDeskReview StudioAssistant
Sign in
On this page
IntuitionHow it worksWhen to use itStrengths & limitationsCommon pitfallsApplicationsFrequently asked🔒 Read the full methodSourcesRelated methods
Cite this pageSpotted an issue on this page? Report or suggest a fix →
Home›Network analysis›Graph Neural Network — GCN / GAT / GraphSAGE
Process / pipeline

Graph Neural Network — GCN / GAT / GraphSAGE

Graph Neural Network (GCN / GAT / GraphSAGE) · Also known as: GNN, GCN, GAT, GraphSAGE, Graf Sinir Ağı (GCN / GAT / GraphSAGE)

A Graph Neural Network (GNN) is a deep learning architecture that operates directly on graph-structured data by combining node features with structural information through iterative neighborhood message passing. The three canonical variants — the Graph Convolutional Network (GCN) introduced by Kipf and Welling in 2017, the Graph Attention Network (GAT) introduced by Veličković et al. in 2018, and GraphSAGE — differ in how they aggregate neighbor information: GCN applies a spectral convolution over the full adjacency, GAT weights neighbors by learned attention scores, and GraphSAGE samples and aggregates local neighborhoods inductively, enabling generalization to unseen nodes.

ScholarGate
  1. Process / pipeline
  2. v1
  3. 3 Sources
  4. PUBLISHED
Cite this page →
Tools & resources
Download slides
Learn & explore

Read the full method

Members only

Sign in with a free account to read this section.

Sign in

Method map

The neighbourhood of related methods — select a node to explore.

Graph Neural Network (Network Analysis)
Centrality AnalysisCommunity DetectionMultilayer Network Analy…Network EmbeddingTemporal Network AnalysisExplainable Graph Neural…Graph KernelsKnowledge Graph Embeddin…Label PropagationLink Prediction

+7 more

When to use it

Use a GNN when your data is naturally graph-structured — social networks, citation networks, molecular graphs, knowledge graphs, or any setting where relationships between entities carry predictive signal. You need a node feature matrix and an edge list. A minimum of around 50 nodes is required for meaningful training. GNNs are applicable to node classification (predicting a label for each node), link prediction (inferring missing edges), and graph classification (assigning a label to a whole graph). The homophily assumption — connected nodes tend to share the same label — is implicitly exploited by GCN and standard GAT; if your graph is heterophilic, consider architectures designed for that setting. For large graphs, full-batch training is memory-prohibitive and mini-batch neighborhood sampling (GraphSAGE-style) is needed. If your graph has fewer than 20 nodes, traditional centrality metrics are a more appropriate choice.

Strengths & limitations

Strengths
  • Jointly leverages both node features and graph topology, outperforming methods that use either alone.
  • GAT's attention mechanism provides per-edge importance scores, adding interpretability to the aggregation.
  • GraphSAGE is inductive and can generalize to nodes and graphs not seen during training, enabling deployment on growing networks.
  • A unified message-passing framework covers node classification, link prediction, and graph classification with the same architectural backbone.
Limitations
  • Over-smoothing: stacking many GNN layers pushes all node embeddings toward a common value, limiting effective depth to around 2–4 layers in practice.
  • Scalability: full-batch GCN and GAT require holding the entire adjacency matrix and feature matrix in memory, which is infeasible for very large graphs without sampling or partitioning.
  • The homophily assumption baked into standard aggregation degrades performance on heterophilic graphs where neighbors tend to have different labels.
  • Minimum sample size of ~50 nodes is required; fewer nodes leave the model without enough signal to learn meaningful representations.

Frequently asked

Which GNN variant should I start with — GCN, GAT, or GraphSAGE?

GCN is the simplest baseline and works well on small-to-medium homophilic graphs where all nodes are known at training time. GAT is preferable when neighbor importance varies and you want interpretable attention weights. GraphSAGE is the right choice when you need to generalize to nodes unseen during training or when the graph is too large for full-batch processing.

What is over-smoothing and how do I avoid it?

Over-smoothing occurs when many GNN layers cause all node embeddings to converge to the same value, eliminating discriminative information. In practice, 2–4 layers is usually optimal. Techniques such as residual connections, jumping knowledge networks, and DropEdge can help if deeper architectures are necessary.

Do GNNs require labeled data for all nodes?

No. GCN and GAT are commonly used in semi-supervised settings where only a small fraction of nodes carry labels; the graph structure propagates information from labeled to unlabeled nodes. GraphSAGE can also be trained in a fully supervised or unsupervised manner depending on the task.

How large does the graph need to be?

A minimum of around 50 nodes is needed for meaningful GNN training. With fewer than 20 nodes the model cannot learn reliable representations and traditional centrality-based analysis is more appropriate. For graphs with millions of nodes, mini-batch neighbor sampling (as in GraphSAGE) or graph partitioning methods are required to keep memory usage tractable.

Sources

  1. Kipf, T.N. & Welling, M. (2017). Semi-Supervised Classification with Graph Convolutional Networks. International Conference on Learning Representations (ICLR). DOI: 10.48550/arXiv.1609.02907 ↗
  2. Veličković, P., Cucurull, G., Casanova, A., Romero, A., Liò, P., & Bengio, Y. (2018). Graph Attention Networks. International Conference on Learning Representations (ICLR). DOI: 10.48550/arXiv.1710.10903 ↗
  3. Hamilton, W.L. (2020). Graph Representation Learning. Morgan & Claypool. DOI: 10.1007/978-3-031-01588-5 ↗

How to cite this page

ScholarGate. (2026, June 1). Graph Neural Network (GCN / GAT / GraphSAGE). ScholarGate. https://scholargate.app/en/network-analysis/graph-neural-network

Related methods

Centrality AnalysisCommunity DetectionMultilayer Network AnalysisNetwork EmbeddingTemporal Network Analysis

Which method?

Set this method beside its closest kin and read them side by side — the library lays the books on the table; the choice is yours.

  • Centrality AnalysisNetwork analysis↔ compare
  • Community DetectionNetwork analysis↔ compare
  • Multilayer Network AnalysisNetwork analysis↔ compare
  • Network EmbeddingNetwork analysis↔ compare
  • Temporal Network AnalysisNetwork analysis↔ compare
Compare side by side →

Referenced by

Explainable Graph Neural NetworkGraph KernelsKnowledge Graph EmbeddingsLabel PropagationLink PredictionMultilingual graph neural networkMultimodal Graph Neural NetworkNetwork Resilience AnalysisSemi-supervised Graph Neural NetworkTopological Deep LearningTransfer Learning with Graph Neural NetworkWeakly supervised graph neural network

Similar methods

Graph Neural NetworkGraph Convolutional NetworkSemi-supervised Graph Neural NetworkGraph Attention NetworkWeakly supervised graph neural networkExplainable Graph Neural NetworkMultimodal Graph Neural NetworkTransfer Learning with Graph Neural Network

Related reference concepts

Machine Learning for ChemistryNeural Network ArchitecturesDeep LearningGraph and Network VisualizationConvolutional and Sequence ModelsDeep Generative Models

Spotted an issue on this page? Report or suggest a fix →

ScholarGate — Graph Neural Network (Network Analysis) (Graph Neural Network (GCN / GAT / GraphSAGE)). Retrieved 2026-07-21 from https://scholargate.app/en/network-analysis/graph-neural-network · Dataset: https://doi.org/10.5281/zenodo.20539026
Quick facts
Originators
Kipf & Welling (GCN, 2017); Veličković et al. (GAT, 2018); Hamilton et al. (GraphSAGE, 2017)
Year
2017–2018 (major variants)
Type
Deep learning on graph-structured data
Mechanism
Neighborhood message passing (spectral convolution / attention / inductive sampling)
Tasks
Node classification, link prediction, graph classification
MinSample
50
Difficulty
3
RequiresNormality
No
Related methods
Centrality AnalysisCommunity DetectionMultilayer Network AnalysisNetwork EmbeddingTemporal Network Analysis
ScholarGate

A content-first reference library for research methods — what each one is, how it works, and where it comes from.

Open data (CC-BY)

Explore

  • Library
  • Search the library…
  • Browse by field
  • Fields
  • Journey
  • Compare
  • Which method?

Reference

  • Subjects
  • Atlas
  • Glossary
  • Methodology
  • Philosophy

Your tools

  • Bookshelf
  • Desk
  • Chat

Company

  • About
  • Pricing
  • Contact
  • Suggest a method

Entries are compiled from published sources for reference. Verifying the accuracy and suitability of any information for your own use remains your responsibility.

© 2026 ScholarGate · A research-method reference library
  • Privacy
  • Cookies
  • Terms
  • Delete account