diff --git a/examples/pruning.rs b/examples/pruning.rs index 284afe5..bb6bc26 100644 --- a/examples/pruning.rs +++ b/examples/pruning.rs @@ -55,13 +55,13 @@ fn main() -> optimizer::Result<()> { // --- Results --- let best = study.best_trial()?; println!( - "Completed {} trials ({} pruned)", + "Recorded {} trials ({} pruned)", study.n_trials(), study.n_pruned_trials() ); println!("Best trial #{}: loss = {:.6}", best.id, best.value); println!(" learning_rate = {:.6}", best.get(&lr).unwrap()); - println!(" momentum = {:.4}", best.get(&momentum).unwrap()); +println!(" momentum = {:.4}", best.get(&momentum).unwrap()); Ok(()) }