arrow-graph 0.5.0

Arrow-native graph processing engine with SQL interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod embeddings;
pub mod features;
pub mod integration;
pub mod knowledge;
pub mod similarity;
pub mod sampling;

pub use embeddings::{Node2Vec, GraphSAGE, TransE, EmbeddingModel, NodeEmbeddings};
pub use features::{FeatureExtractor, GraphFeatures, MLFeatureSet};
pub use integration::{PyTorchGeometricBridge, GNNProcessor, ModelExport};
pub use knowledge::{KnowledgeGraph, Triple, Resource, RDFValue, SPARQLQuery, sparql_select};
pub use similarity::{GraphKernel, GraphEditDistance, MotifDetector, SubgraphMatcher};
pub use sampling::{GraphSAINTSampler, FastGCNSampler, MLSamplingStrategy};