Move 17 library crates into crates/, CLI binary into bin/fxt, consolidate 10 test crates into testing/, split config crate from deployment config files. Root directory reduced from 38+ to ~17 directories. All Cargo.toml paths and build.rs proto refs updated. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"training_start": "2025-10-13T16:11:41+02:00",
|
|
"configuration": {
|
|
"epochs": 500,
|
|
"learning_rate": 0.0001,
|
|
"batch_size": 230,
|
|
"data_files": 360
|
|
},
|
|
"models": {
|
|
"dqn": {
|
|
"model_name": "DQN (Deep Q-Network)",
|
|
"epochs": 500,
|
|
"duration_seconds": 91,
|
|
"output_path": "ml/trained_models/dqn_model_epoch500.safetensors",
|
|
"log_file": "ml/trained_models/dqn_training.log"
|
|
},
|
|
"ppo": {
|
|
"model_name": "PPO (Proximal Policy Optimization)",
|
|
"epochs": 500,
|
|
"duration_seconds": 91,
|
|
"output_path": "ml/trained_models/ppo_model_epoch500.safetensors",
|
|
"log_file": "ml/trained_models/ppo_training.log"
|
|
},
|
|
"mamba2": {
|
|
"model_name": "MAMBA-2 (State Space Model)",
|
|
"epochs": 500,
|
|
"duration_seconds": 93,
|
|
"output_path": "ml/trained_models/mamba2_model_epoch500.safetensors",
|
|
"log_file": "ml/trained_models/mamba2_training.log"
|
|
},
|
|
"tft": {
|
|
"model_name": "TFT (Temporal Fusion Transformer)",
|
|
"epochs": 500,
|
|
"duration_seconds": 92,
|
|
"output_path": "ml/trained_models/tft_model_epoch500.safetensors",
|
|
"log_file": "ml/trained_models/tft_training.log"
|
|
},
|
|
"_end": null
|
|
},
|
|
"training_end": "2025-10-13T16:17:48+02:00"
|
|
}
|