Free SKILL.md scraped from GitHub. Clone the repo or copy the file directly into your Claude Code skills directory.
npx versuz@latest install hiyenwong-ai-collection-collection-skills-gnn-embedding-shape-analysisgit clone https://github.com/hiyenwong/ai_collection.gitcp ai_collection/SKILL.MD ~/.claude/skills/hiyenwong-ai-collection-collection-skills-gnn-embedding-shape-analysis/SKILL.md---
name: gnn-embedding-shape-analysis
description: "Node embeddings act as the information interface for graph neural networks, yet their empirical impact is often reported under mismatched backbones, splits, and training budgets. T... Activation: graph neural, learning, network, neural"
---
# How Embeddings Shape Graph Neural Networks: Classical vs Quantum-Oriented Node Representations
## Overview
Node embeddings act as the information interface for graph neural networks, yet their empirical impact is often reported under mismatched backbones, splits, and training budgets. This paper provides a controlled benchmark of embedding choices for graph classification, comparing classical baselines with quantum-oriented node representations under a unified pipeline. We evaluate two classical baselines alongside quantum-oriented alternatives, including a circuit-defined variational embedding and quantum-inspired embeddings computed via graph operators and linear-algebraic constructions. All vari
## Source Paper
- **Title:** How Embeddings Shape Graph Neural Networks: Classical vs Quantum-Oriented Node Representations
- **Authors:** Nouhaila Innan, Antonello Rosato, Alberto Marchisio et al.
- **arXiv:** [2604.15273v1](https://arxiv.org/abs/2604.15273v1)
- **Published:** 2026-04-16
- **Categories:** cs.LG, quant-ph
- **PDF:** [Download](https://arxiv.org/pdf/2604.15273v1)
## Core Concepts
### Key Contributions
### 1. This paper provides a controlled benchmark of embedding choices for graph classification, comparing classical baselines with quantum-oriented node rep
### Methodology
Primary methods: neural network, graph, embedding
## Implementation
```python
# Example implementation skeleton based on How Embeddings Shape Graph Neural Networks: Classical vs Quantum-Oriented Node Representations
import torch
import torch.nn as nn
class HowEmbeddingsShapeGraphNeuralNetworksModel(nn.Module):
"""
Model architecture inspired by the paper:
How Embeddings Shape Graph Neural Networks: Classical vs Quantum-Oriented Node Representations
"""
def __init__(self, input_dim=128, hidden_dim=256, output_dim=10):
super().__init__()
# Core components based on: neural network, graph, embedding
self.encoder = nn.Sequential(
nn.Linear(input_dim, hidden_dim),
nn.ReLU(),
nn.Linear(hidden_dim, hidden_dim),
nn.ReLU(),
)
self.head = nn.Linear(hidden_dim, output_dim)
def forward(self, x):
features = self.encoder(x)
return self.head(features)
```
## Practical Applications
- **Classification**: Application of neural network, graph, embedding for classification
- **Control**: Application of neural network, graph, embedding for control
## References
- Nouhaila Innan et al. (2026). "How Embeddings Shape Graph Neural Networks: Classical vs Quantum-Oriented Node Representations." arXiv:2604.15273v1.
## Activation Keywords
- graph neural, learning, network, neural