ruvector-attention 2.1.0

Attention mechanisms for ruvector - geometric, graph, and sparse attention
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Graph attention mechanisms for GNN applications
//!
//! This module provides graph-specific attention implementations:
//! - Edge-featured attention (GAT with edge features)
//! - Rotary position embeddings for graphs (RoPE)
//! - Dual-space attention (Euclidean + Hyperbolic)

pub mod dual_space;
pub mod edge_featured;
pub mod rope;

pub use dual_space::{DualSpaceAttention, DualSpaceConfig};
pub use edge_featured::{EdgeFeaturedAttention, EdgeFeaturedConfig};
pub use rope::{GraphRoPE, RoPEConfig};