Extract high-order functional brain network features using hypergraph modeling. Goes beyond pairwise connectivity to capture multi-region interactions.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill hypergraph-functional-brain-network --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Hypergraph Functional Brain Network?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-hypergraph-functional-brain-network-ai-collection)More formats (shields.io, HTML) on the badges page.
---
name: hypergraph-functional-brain-network
version: v1.0.0
last_updated: 2026-05-05
description: Extract high-order functional brain network features using hypergraph modeling. Goes beyond pairwise connectivity to capture multi-region interactions.
---
# Hypergraph Functional Brain Network
Extract high-order functional brain network features using hypergraph modeling for improved brain disease classification and network analysis.
## Source Paper
- **Title:** Beyond Pairwise Connections: Extracting High-Order Functional Brain Networks
- **arXiv:** 2510.09175
- **Published:** 2025-10
- **Key Insight:** Functional brain network modeling via pairwise interactions cannot capture high-order dependencies among 3+ regions. Hypergraph modeling addresses this but current approaches are computationally expensive and heuristic. This paper proposes end-to-end high-order FBN extraction directly from data distributions.
## Activation Keywords
- hypergraph brain network
- high-order functional connectivity
- brain network beyond pairwise
- hypergraph fMRI
- 高阶脑网络
- 超图功能连接
- higher-order brain interaction
## Core Methodology
### Problem
Traditional functional brain networks (FBNs) model only pairwise 2-node connections, missing multi-region co-activation patterns, synergistic interactions among 3+ brain regions, and higher-order organizational principles.
### Solution: End-to-End Hypergraph FBN Extraction
1. **Data-Driven Hyperedge Construction**
- Learn hyperedge weights directly from fMRI time series
- Avoid heuristic thresholding or correlation-based grouping
- Use differentiable hypergraph construction layer
2. **Hypergraph Neural Network Processing**
- Apply hypergraph convolution on constructed hyperedges
- Message passing across multi-region groups
- Learn representations capturing high-order dependencies
3. **End-to-End Optimization**
- Joint optimization of hypergraph construction and classification
- Gradient flows through hypergraph structure
- No separate preprocessing pipeline needed
## Implementation Pattern
```python
import torch
import torch.nn as nn
class HypergraphFBN(nn.Module):
def __init__(self, n_regions, n_hyperedges, n_classes):
super().__init__()
self.hyperedge_weights = nn.Parameter(torch.randn(n_regions, n_hyperedges))
self.hyper_conv = HypergraphConv(n_regions, 64)
self.classifier = nn.Sequential(
nn.Linear(64, 32),
nn.ReLU(),
nn.Linear(32, n_classes)
)
def forward(self, x):
H = torch.softmax(self.hyperedge_weights, dim=0)
out = self.hyper_conv(x, H)
return self.classifier(out)
```
## Application Scenarios
1. Brain disease classification: Alzheimer, schizophrenia, depression detection
2. Cognitive state decoding: multi-region co-activation during tasks
3. Brain network biomarker discovery: identify hyperedges specific to conditions
## Pitfalls
1. Hyperedge number selection: too few loses info, too many overfits
2. Computational cost: hypergraph ops more expensive than graph ops
3. Interpretability: high-order features harder to visualize
4. Data requirements: needs sufficient samples for stable hyperedge learning
## Related Skills
- brain-graph-neural
- functional-connectivity-graph-neural-networks
- higher-order-brain-networks
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!