1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
// OptiRS - AdaBound Optimizer
// Adaptive Gradient Methods with Dynamic Bound of Learning Rate
// Reference: "Adaptive Gradient Methods with Dynamic Bound of Learning Rate" (ICLR 2019)
//
// Algorithm:
// AdaBound employs dynamic bounds on learning rates to achieve smooth transition
// from adaptive methods to SGD. This prevents the generalization gap observed
// in pure adaptive methods.
//
// Lower bound: α_l(t) = α_final * (1 - 1/(γ*t + 1))
// Upper bound: α_u(t) = α_final * (1 + 1/(γ*t))
// Clipped learning rate: η_t(i) = Clip(α / √(v_t(i) + ε), α_l(t), α_u(t))
use crate::error::{OptimError, Result};
use crate::optimizers::Optimizer;
use scirs2_core::ndarray::{Ix1, ScalarOperand};
use scirs2_core::ndarray_ext::{Array1, ArrayView1};
use scirs2_core::numeric::Float;
use serde::{Deserialize, Serialize};
use std::fmt::Debug;
/// AdaBound optimizer configuration
///
/// AdaBound combines the benefits of adaptive learning rate methods (like Adam)
/// with the strong generalization of SGD by dynamically bounding the learning rates.
///
/// # Key Features
/// - Smooth transition from Adam to SGD during training
/// - Dynamic bounds prevent learning rates from becoming too large or too small
/// - Better generalization than pure Adam
/// - Maintains fast convergence of adaptive methods
///
/// # Type Parameters
/// - `T`: Floating-point type (f32 or f64)
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AdaBound<T: Float> {
/// Initial learning rate (α)
learning_rate: T,
/// Final learning rate for SGD convergence
/// Typically 0.1 * learning_rate
final_lr: T,
/// First moment decay rate (β₁) - typically 0.9
beta1: T,
/// Second moment decay rate (β₂) - typically 0.999
beta2: T,
/// Small constant for numerical stability (ε) - typically 1e-8
epsilon: T,
/// Convergence speed parameter (γ) - typically 1e-3
/// Controls how fast bounds converge to final_lr
gamma: T,
/// Weight decay coefficient (L2 regularization)
weight_decay: T,
/// Whether to use AMSBound variant (max of v_t)
amsbound: bool,
/// First moment vector (m_t)
momentum: Option<Array1<T>>,
/// Second moment vector (v_t)
velocity: Option<Array1<T>>,
/// Max of second moment (v̂_t) - only for AMSBound
max_velocity: Option<Array1<T>>,
/// Number of optimization steps performed
step_count: usize,
}
impl<T: Float + ScalarOperand> Default for AdaBound<T> {
fn default() -> Self {
Self::new(
T::from(0.001).expect("AdaBound: default learning_rate (0.001) must fit in T"),
T::from(0.1).expect("AdaBound: default final_lr (0.1) must fit in T"),
T::from(0.9).expect("AdaBound: default beta1 (0.9) must fit in T"),
T::from(0.999).expect("AdaBound: default beta2 (0.999) must fit in T"),
T::from(1e-8).expect("AdaBound: default epsilon (1e-8) must fit in T"),
T::from(1e-3).expect("AdaBound: default gamma (1e-3) must fit in T"),
T::zero(),
false,
)
.expect("AdaBound: default hyperparameters always satisfy validation")
}
}
impl<T: Float + ScalarOperand> AdaBound<T> {
/// Create a new AdaBound optimizer
///
/// # Arguments
/// - `learning_rate`: Initial learning rate (typically 0.001)
/// - `final_lr`: Final learning rate for SGD convergence (typically 0.1)
/// - `beta1`: First moment decay rate (typically 0.9)
/// - `beta2`: Second moment decay rate (typically 0.999)
/// - `epsilon`: Small constant for numerical stability (typically 1e-8)
/// - `gamma`: Convergence speed parameter (typically 1e-3)
/// - `weight_decay`: L2 regularization coefficient (typically 0.0)
/// - `amsbound`: Use AMSBound variant if true
///
/// # Example
/// ```
/// use optirs_core::optimizers::AdaBound;
///
/// let optimizer = AdaBound::<f32>::new(
/// 0.001, // learning_rate
/// 0.1, // final_lr
/// 0.9, // beta1
/// 0.999, // beta2
/// 1e-8, // epsilon
/// 1e-3, // gamma
/// 0.0, // weight_decay
/// false // amsbound
/// ).expect("AdaBound::new succeeds for finite, in-range default hyperparameters");
/// ```
// AdaBound's full-configuration constructor mirrors the paper's 8 named
// hyperparameters (Luo et al., 2019); grouping them into a config struct
// would be a breaking change to this crate's public API for no gain in
// clarity at the (single, non-hot-path) call site.
#[allow(clippy::too_many_arguments)]
pub fn new(
learning_rate: T,
final_lr: T,
beta1: T,
beta2: T,
epsilon: T,
gamma: T,
weight_decay: T,
amsbound: bool,
) -> Result<Self> {
let lr_f64 = crate::optimizers::scalar_to_f64(learning_rate)?;
let final_f64 = crate::optimizers::scalar_to_f64(final_lr)?;
let beta1_f64 = crate::optimizers::scalar_to_f64(beta1)?;
let beta2_f64 = crate::optimizers::scalar_to_f64(beta2)?;
let eps_f64 = crate::optimizers::scalar_to_f64(epsilon)?;
let gamma_f64 = crate::optimizers::scalar_to_f64(gamma)?;
let wd_f64 = crate::optimizers::scalar_to_f64(weight_decay)?;
if lr_f64 <= 0.0 {
return Err(OptimError::InvalidParameter(format!(
"learning_rate must be positive, got {}",
lr_f64
)));
}
if final_f64 <= 0.0 {
return Err(OptimError::InvalidParameter(format!(
"final_lr must be positive, got {}",
final_f64
)));
}
if beta1_f64 <= 0.0 || beta1_f64 >= 1.0 {
return Err(OptimError::InvalidParameter(format!(
"beta1 must be in (0, 1), got {}",
beta1_f64
)));
}
if beta2_f64 <= 0.0 || beta2_f64 >= 1.0 {
return Err(OptimError::InvalidParameter(format!(
"beta2 must be in (0, 1), got {}",
beta2_f64
)));
}
if eps_f64 <= 0.0 {
return Err(OptimError::InvalidParameter(format!(
"epsilon must be positive, got {}",
eps_f64
)));
}
if gamma_f64 <= 0.0 {
return Err(OptimError::InvalidParameter(format!(
"gamma must be positive, got {}",
gamma_f64
)));
}
if wd_f64 < 0.0 {
return Err(OptimError::InvalidParameter(format!(
"weight_decay must be non-negative, got {}",
wd_f64
)));
}
Ok(Self {
learning_rate,
final_lr,
beta1,
beta2,
epsilon,
gamma,
weight_decay,
amsbound,
momentum: None,
velocity: None,
max_velocity: None,
step_count: 0,
})
}
/// Perform a single optimization step
///
/// # Arguments
/// - `params`: Current parameter values
/// - `grads`: Gradient values
///
/// # Returns
/// Result containing updated parameters or error
///
/// # Algorithm
/// 1. Initialize moments on first step
/// 2. Apply weight decay if configured
/// 3. Update biased first moment: m_t = β₁ * m_{t-1} + (1 - β₁) * g_t
/// 4. Update biased second moment: v_t = β₂ * v_{t-1} + (1 - β₂) * g_t²
/// 5. Compute bias-corrected moments
/// 6. Compute dynamic bounds: [α_l(t), α_u(t)]
/// 7. Compute clipped learning rate per parameter
/// 8. Apply parameter update: θ_{t+1} = θ_t - η_t * m̂_t
///
/// # Example
/// ```
/// use optirs_core::optimizers::AdaBound;
/// use scirs2_core::ndarray_ext::array;
///
/// let mut optimizer = AdaBound::<f32>::default();
/// let params = array![1.0, 2.0, 3.0];
/// let grads = array![0.1, 0.2, 0.3];
///
/// let updated_params = optimizer.step(params.view(), grads.view()).expect("optimizer.step succeeds");
/// ```
pub fn step<'a, P, G>(&mut self, params: P, grads: G) -> Result<Array1<T>>
where
P: Into<ArrayView1<'a, T>>,
G: Into<ArrayView1<'a, T>>,
T: 'a,
{
self.step_view(params.into(), grads.into())
}
/// Perform a single optimization step on borrowed views
///
/// This is the concrete implementation behind [`AdaBound::step`].
pub fn step_view(&mut self, params: ArrayView1<T>, grads: ArrayView1<T>) -> Result<Array1<T>> {
let n = params.len();
if grads.len() != n {
return Err(OptimError::DimensionMismatch(format!(
"Expected gradient size {}, got {}",
n,
grads.len()
)));
}
// Initialize moments on first step
if self.amsbound && self.max_velocity.is_none() {
self.max_velocity = Some(Array1::zeros(n));
}
self.step_count += 1;
let t: T = crate::optimizers::cast_scalar(self.step_count)?;
let momentum = self.momentum.get_or_insert_with(|| Array1::zeros(n));
let velocity = self.velocity.get_or_insert_with(|| Array1::zeros(n));
let one = T::one();
// Apply weight decay if configured
let effective_grads = if self.weight_decay > T::zero() {
grads.to_owned() + &(params.to_owned() * self.weight_decay)
} else {
grads.to_owned()
};
// Update biased first moment: m_t = β₁ * m_{t-1} + (1 - β₁) * g_t
for i in 0..n {
momentum[i] = self.beta1 * momentum[i] + (one - self.beta1) * effective_grads[i];
}
// Update biased second moment: v_t = β₂ * v_{t-1} + (1 - β₂) * g_t²
for i in 0..n {
let grad_sq = effective_grads[i] * effective_grads[i];
velocity[i] = self.beta2 * velocity[i] + (one - self.beta2) * grad_sq;
}
// For AMSBound: v̂_t = max(v̂_{t-1}, v_t)
if self.amsbound {
let max_vel = self.max_velocity.get_or_insert_with(|| Array1::zeros(n));
for i in 0..n {
if velocity[i] > max_vel[i] {
max_vel[i] = velocity[i];
}
}
}
// Compute bias correction terms
let bias_correction1 = one - self.beta1.powf(t);
let bias_correction2 = one - self.beta2.powf(t);
// Compute dynamic bounds
// Lower bound: α_l(t) = α_final * (1 - 1/(γ*t + 1))
let lower_bound = self.final_lr * (one - one / (self.gamma * t + one));
// Upper bound: α_u(t) = α_final * (1 + 1/(γ*t))
let upper_bound = self.final_lr * (one + one / (self.gamma * t));
// Apply parameter updates with clipped learning rates
let mut updated_params = params.to_owned();
for i in 0..n {
// Bias-corrected first moment
let m_hat = momentum[i] / bias_correction1;
// Bias-corrected second moment (or max for AMSBound)
let v_hat = if self.amsbound {
// Structural invariant: `max_velocity` is initialized to `Some` at the
// top of this function whenever `self.amsbound` is true, so this can
// never actually be `None`.
self.max_velocity
.as_ref()
.expect("AdaBound: max_velocity is Some whenever amsbound is enabled")[i]
/ bias_correction2
} else {
velocity[i] / bias_correction2
};
// Compute adaptive learning rate: α / √(v_t + ε)
let step_size = self.learning_rate / (v_hat.sqrt() + self.epsilon);
// Clip learning rate to dynamic bounds
let clipped_step_size = if step_size < lower_bound {
lower_bound
} else if step_size > upper_bound {
upper_bound
} else {
step_size
};
// Apply update: θ_{t+1} = θ_t - η_clipped * m̂_t
updated_params[i] = updated_params[i] - clipped_step_size * m_hat;
}
Ok(updated_params)
}
/// Get the number of optimization steps performed
pub fn step_count(&self) -> usize {
self.step_count
}
/// Reset the optimizer state
pub fn reset(&mut self) {
self.momentum = None;
self.velocity = None;
self.max_velocity = None;
self.step_count = 0;
}
/// Get current dynamic bounds [lower, upper]
pub fn current_bounds(&self) -> (T, T) {
if self.step_count == 0 {
return (self.final_lr, self.final_lr);
}
let t = T::from(self.step_count)
.expect("AdaBound: step_count must be representable in T (f32/f64)");
let one = T::one();
let lower_bound = self.final_lr * (one - one / (self.gamma * t + one));
let upper_bound = self.final_lr * (one + one / (self.gamma * t));
(lower_bound, upper_bound)
}
}
impl<T> Optimizer<T, Ix1> for AdaBound<T>
where
T: Float + ScalarOperand + Debug + Send + Sync,
{
fn step(&mut self, params: &Array1<T>, gradients: &Array1<T>) -> Result<Array1<T>> {
self.step_view(params.view(), gradients.view())
}
fn get_learning_rate(&self) -> T {
self.learning_rate
}
fn set_learning_rate(&mut self, learning_rate: T) {
self.learning_rate = learning_rate;
}
}
#[cfg(test)]
mod tests {
use super::*;
use approx::assert_relative_eq;
use scirs2_core::ndarray_ext::array;
#[test]
fn test_adabound_creation() {
let optimizer = AdaBound::<f32>::default();
assert_eq!(optimizer.step_count(), 0);
}
#[test]
fn test_adabound_single_step() {
let mut optimizer = AdaBound::<f32>::default();
let params = array![1.0, 2.0, 3.0];
let grads = array![0.1, 0.2, 0.3];
let updated_params = optimizer
.step(params.view(), grads.view())
.expect("step succeeds in test_adabound_single_step");
assert_eq!(updated_params.len(), 3);
assert_eq!(optimizer.step_count(), 1);
// Parameters should decrease (gradient descent)
for i in 0..3 {
assert!(updated_params[i] < params[i]);
}
}
#[test]
fn test_adabound_multiple_steps() {
let mut optimizer = AdaBound::<f32>::default();
let mut params = array![1.0, 2.0, 3.0];
for _ in 0..10 {
let grads = array![0.1, 0.2, 0.3];
params = optimizer
.step(params.view(), grads.view())
.expect("step succeeds in test_adabound_multiple_steps");
}
assert_eq!(optimizer.step_count(), 10);
}
#[test]
fn test_adabound_dynamic_bounds() {
let mut optimizer = AdaBound::<f32>::default();
let params = array![1.0, 2.0, 3.0];
let grads = array![0.1, 0.2, 0.3];
// Before any steps, bounds should be equal to final_lr
let (lower0, upper0) = optimizer.current_bounds();
assert_relative_eq!(lower0, 0.1, epsilon = 1e-6);
assert_relative_eq!(upper0, 0.1, epsilon = 1e-6);
// After first step, bounds should widen
optimizer
.step(params.view(), grads.view())
.expect("step succeeds in test_adabound_dynamic_bounds");
let (lower1, upper1) = optimizer.current_bounds();
assert!(lower1 < upper1);
assert!(lower1 >= 0.0);
// After many steps, bounds should converge to final_lr
for _ in 0..10000 {
// Need many more steps for bound convergence
optimizer
.step(params.view(), grads.view())
.expect("step succeeds in test_adabound_dynamic_bounds");
}
let (lower_final, upper_final) = optimizer.current_bounds();
assert_relative_eq!(lower_final, 0.1, epsilon = 0.01);
assert_relative_eq!(upper_final, 0.1, epsilon = 0.01);
}
#[test]
fn test_amsbound() {
let mut optimizer = AdaBound::<f32>::new(0.001, 0.1, 0.9, 0.999, 1e-8, 1e-3, 0.0, true)
.expect("AdaBound::<f32>::new succeeds in test_amsbound");
let params = array![1.0, 2.0, 3.0];
let grads = array![0.1, 0.2, 0.3];
let updated_params = optimizer
.step(params.view(), grads.view())
.expect("step succeeds in test_amsbound");
assert_eq!(updated_params.len(), 3);
assert!(optimizer.max_velocity.is_some());
}
#[test]
fn test_adabound_weight_decay() {
let mut optimizer = AdaBound::<f32>::new(0.001, 0.1, 0.9, 0.999, 1e-8, 1e-3, 0.01, false)
.expect("AdaBound::<f32>::new succeeds in test_adabound_weight_decay");
let params = array![1.0, 2.0, 3.0];
let grads = array![0.1, 0.2, 0.3];
let updated_params = optimizer
.step(params.view(), grads.view())
.expect("step succeeds in test_adabound_weight_decay");
// With weight decay, updates should be larger
for i in 0..3 {
assert!(updated_params[i] < params[i]);
}
}
#[test]
fn test_adabound_convergence() {
// Test convergence on quadratic function f(x) = x²
let mut optimizer = AdaBound::<f64>::default();
let mut params = array![5.0];
for _ in 0..500 {
// AdaBound needs more iterations for tight convergence
let grads = params.mapv(|x| 2.0 * x);
params = optimizer
.step(params.view(), grads.view())
.expect("step succeeds in test_adabound_convergence");
}
// Should converge close to zero
assert!(
params[0].abs() < 0.1,
"Failed to converge, got {}",
params[0]
);
}
#[test]
fn test_adabound_reset() {
let mut optimizer = AdaBound::<f32>::default();
let params = array![1.0, 2.0, 3.0];
let grads = array![0.1, 0.2, 0.3];
optimizer
.step(params.view(), grads.view())
.expect("step succeeds in test_adabound_reset");
assert_eq!(optimizer.step_count(), 1);
optimizer.reset();
assert_eq!(optimizer.step_count(), 0);
assert!(optimizer.momentum.is_none());
assert!(optimizer.velocity.is_none());
}
/// AdaBound must be usable through the generic `Optimizer` trait.
#[test]
fn test_adabound_optimizer_trait() {
let mut optimizer = AdaBound::<f64>::default();
let params = scirs2_core::ndarray_ext::array![1.0f64, 2.0, 3.0];
let grads = scirs2_core::ndarray_ext::array![0.1f64, 0.2, 0.3];
let updated =
Optimizer::<f64, scirs2_core::ndarray::Ix1>::step(&mut optimizer, ¶ms, &grads)
.expect("trait step failed");
assert_eq!(updated.len(), 3);
let lr = Optimizer::<f64, scirs2_core::ndarray::Ix1>::get_learning_rate(&optimizer);
Optimizer::<f64, scirs2_core::ndarray::Ix1>::set_learning_rate(&mut optimizer, lr * 2.0);
assert!(
(Optimizer::<f64, scirs2_core::ndarray::Ix1>::get_learning_rate(&optimizer) - lr * 2.0)
.abs()
< 1e-12
);
// The generic inherent `step` also accepts plain references.
let again = optimizer.step(¶ms, &grads).expect("ref step failed");
assert_eq!(again.len(), 3);
}
}