Expand description
Graph Embeddings
This module provides graph embedding algorithms for converting graph structures into dense vector representations:
- Node2Vec: Random walk-based embeddings capturing network neighborhoods
- GraphSAGE: Inductive representation learning using neighborhood sampling
- DeepWalk: Simplified random walk embeddings
- Struct2Vec: Structure-aware graph embeddings
§Use Cases
- Node classification and clustering
- Link prediction
- Graph visualization
- Similarity search in graph space
- Transfer learning across graphs
Structs§
- Embedding
Config - Graph embedding configuration
- Embedding
Graph - Graph for embedding generation
- GraphSAGE
- GraphSAGE embeddings generator
- GraphSAGE
Config - GraphSAGE configuration
- Node2
Vec - Node2Vec embeddings generator
Enums§
- Aggregator
- Aggregation functions for GraphSAGE