✅ Validation Results: - PPO training: 24.2s (1 epoch, 950 samples, dim=225) - Feature extraction: 105μs/bar (9.5x faster than target) - Model checkpoint: 293KB (147KB actor + 146KB critic) - GPU memory: 145MB used (96.4% headroom) - Zero dimension mismatches 📊 Success Criteria (5/5): ✅ Feature dimension = 225 (Wave C 201 + Wave D 24) ✅ Model state_dim = 225 ✅ Training completed without errors ✅ Checkpoint saved successfully ✅ No dimension mismatch errors 📁 Training Data Ready: - ES.FUT: 2.9MB, 180 days - NQ.FUT: 4.4MB, 180 days - 6E.FUT: 2.8MB, 180 days - ZN.FUT: 65KB, 90 days (clean) 🚀 Next: Full production model retraining (4 models, ~10min GPU time) 🤖 Generated with Claude Code (https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
689 B
Rust
17 lines
689 B
Rust
//! Integration Tests Module
|
|
//!
|
|
//! This module contains comprehensive integration tests for the ML Training Service.
|
|
//!
|
|
//! **Test Suites:**
|
|
//! - End-to-End Batch Workflow: Complete workflow from submission to completion
|
|
//! - Database Integration: Migration 046 validation, foreign keys, triggers
|
|
//! - gRPC API Integration: RPC methods, streaming, concurrent clients
|
|
//! - Real Data Integration: Parquet file discovery and training
|
|
//! - Failure Recovery: Error handling, reconnection, partial completion
|
|
|
|
pub mod end_to_end_batch_workflow_test;
|
|
pub mod database_integration_test;
|
|
pub mod grpc_api_integration_test;
|
|
pub mod real_data_integration_test;
|
|
pub mod failure_recovery_test;
|