refactor: all train() and load_training_data() callers pass explicit symbol

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
jgrusewski
2026-04-04 10:02:37 +02:00
parent d99abd3844
commit d2d80b7392
16 changed files with 35 additions and 35 deletions

View File

@@ -121,7 +121,7 @@ async fn test_accumulation_single_optimizer_step() -> Result<()> {
let mut trainer = DQNTrainer::new(hyperparams)?;
let metrics = trainer
.train(&data_dir, |_epoch, checkpoint_data, _is_best| {
.train(&data_dir, "ES.FUT", |_epoch, checkpoint_data, _is_best| {
let path = checkpoint_dir.path().join("accum_test.safetensors");
std::fs::write(&path, &checkpoint_data)?;
Ok(path.to_string_lossy().to_string())