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 models for representing accounting data as networks.

mod edges;
mod graph;
pub mod hypergraph;
mod nodes;

pub use edges::*;
pub use graph::*;
pub use hypergraph::{
    AggregationStrategy, CrossLayerEdge, Hyperedge, HyperedgeParticipant, Hypergraph,
    HypergraphLayer, HypergraphMetadata, HypergraphNode, NodeBudget, NodeBudgetReport,
    NodeBudgetSuggestion,
};
pub use nodes::*;