Crate rustkernel_behavioral

Crate rustkernel_behavioral 

Source
Expand description

§RustKernel Behavioral Analytics

GPU-accelerated behavioral analytics kernels for profiling and forensics.

§Kernels

  • BehavioralProfiling - Feature extraction for user behavior
  • AnomalyProfiling - Deviation scoring from behavioral baseline
  • FraudSignatureDetection - Known fraud pattern matching
  • CausalGraphConstruction - DAG inference from event streams
  • ForensicQueryExecution - Historical pattern search and analysis
  • EventCorrelationKernel - Temporal event correlation and clustering

Re-exports§

pub use causal::CausalGraphConstruction;
pub use correlation::EventCorrelationKernel;
pub use forensics::ForensicQueryExecution;
pub use profiling::AnomalyProfiling;
pub use profiling::BehavioralProfiling;
pub use signatures::FraudSignatureDetection;
pub use types::AnomalyResult;
pub use types::AnomalyType;
pub use types::BehaviorProfile;
pub use types::CausalEdge;
pub use types::CausalGraphResult;
pub use types::CausalNode;
pub use types::CorrelationCluster;
pub use types::CorrelationResult;
pub use types::CorrelationType;
pub use types::EventCorrelation;
pub use types::EventValue;
pub use types::FeatureDeviation;
pub use types::ForensicQuery;
pub use types::ForensicResult;
pub use types::FraudSignature;
pub use types::ProfilingResult;
pub use types::QueryType;
pub use types::SignatureMatch;
pub use types::SignaturePattern;
pub use types::UserEvent;

Modules§

causal
Causal graph construction kernels.
correlation
Event correlation kernels.
forensics
Forensic query execution kernels.
prelude
Prelude for convenient imports.
profiling
Behavioral profiling kernels.
signatures
Fraud signature detection kernels.
types
Behavioral analytics types and data structures.

Functions§

register_all
Register all behavioral kernels with a registry.