datasynth-graph 3.0.0

Graph/network export for synthetic accounting data - supports PyTorch Geometric, Neo4j, and DGL formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Graph builders for constructing different graph types from accounting data.

mod approval_graph;
mod banking_graph;
mod compliance_graph;
mod entity_graph;
pub mod hypergraph;
mod transaction_graph;

pub use approval_graph::*;
pub use banking_graph::*;
pub use compliance_graph::*;
pub use entity_graph::*;
pub use hypergraph::{BuilderInput, HypergraphBuilder, HypergraphConfig, LayerDemand};
pub use transaction_graph::*;