Real-time fraud detection
through the graph itself.
Hybrid scoring engine fusing hand-tuned graph heuristics with a PyTorch edge-level GNN. Every transaction is enriched with 14 features derived from live network context — velocity spikes, reverse edges, mule flow, cross-border paths — and scored in milliseconds.
- // no alerts yet · run a simulation
Graph Store
NetworkX DiGraph holds accounts and directed money flow. Every event updates degrees, amounts, and first/last timestamps for O(1) lookups during feature enrichment.
Hybrid Scoring
14 engineered features (velocity, z-score, reverse-edge, mule ratio) scored by a calibrated heuristic AND a PyTorch EdgeMLP. Model uplift protects against false negatives.
Observability
Every request is instrumented: HTTP latency, score histograms, high-risk counters, graph gauges. Prometheus scrapes, Grafana visualizes, alerts flow downstream.