oxirs-embed 0.3.1

Knowledge graph embeddings with TransE, ComplEx, and custom models
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Cross-Module Performance — facade
//!
//! Re-exports all public items from the sibling modules.

pub use crate::cross_module_performance_profiler::{
    calculate_anomaly_score, calculate_percentage_change, AnomalyDetector, LearningEngine,
    ModulePerformanceMonitor, PredictivePerformanceEngine, ResourceAllocator, ResourceTracker,
};
pub use crate::cross_module_performance_reporter::{
    CrossModulePerformanceCoordinator, GlobalPerformanceMetrics, OptimizationCache,
};
pub use crate::cross_module_performance_types::{
    AllocationEvent, AllocationStrategy, AllocationType, AnomalyAlgorithm, AnomalyEvent,
    AnomalyType, CacheStats, CachedOptimization, CachedPrediction, CoordinatorConfig, ModelType,
    ModuleMetrics, OptimizationRecommendation, OptimizationResults, OptimizationType,
    PerformanceBaseline, PerformanceImpact, PerformanceModel, PerformanceSnapshot, Priority,
    ResourceAllocation, SeverityLevel, TrainingSample,
};