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
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
//! Stochastic Gradient Descent (SGD) optimizer
//!
//! This module provides implementation of SGD, one of the most fundamental and widely-used
//! optimization algorithms in deep learning. SGD updates parameters by taking steps proportional
//! to the negative of the gradient.
//!
//! ## Stochastic Gradient Descent (SGD)
//!
//! SGD is the foundational optimization algorithm for neural networks. Despite being simple,
//! it remains highly effective and is often preferred for training large-scale models due to
//! its simplicity, robustness, and excellent generalization properties.
//!
//! ### Key Features:
//! - Simple and memory-efficient
//! - Excellent generalization properties
//! - Optional momentum for faster convergence
//! - Nesterov acceleration for improved momentum updates
//! - Well-understood theoretical properties
//!
//! ### When to Use SGD:
//! - **Computer Vision** - ResNet, VGG, and other CNN architectures train well with SGD+momentum
//! - **Large-scale training** - Lower memory footprint than adaptive methods (Adam, RMSprop)
//! - **When generalization matters** - Often achieves better test accuracy than Adam
//! - **Transfer learning** - Fine-tuning pre-trained models on new tasks
//! - **When you can tune hyperparameters** - Requires more tuning than Adam but often worth it
//!
//! ## Mathematical Formulation
//!
//! ### Basic SGD (no momentum):
//! ```text
//! θ_t = θ_{t-1} - α * g_t
//! ```
//!
//! ### SGD with Momentum:
//! ```text
//! v_t = μ * v_{t-1} + g_t // Velocity update
//! θ_t = θ_{t-1} - α * v_t // Parameter update
//! ```
//!
//! ### SGD with Momentum and Dampening:
//! ```text
//! v_t = μ * v_{t-1} + (1 - d) * g_t // Dampened velocity
//! θ_t = θ_{t-1} - α * v_t // Parameter update
//! ```
//!
//! ### SGD with Nesterov Momentum:
//! ```text
//! v_t = μ * v_{t-1} + g_t // Velocity update
//! θ_t = θ_{t-1} - α * (g_t + μ * v_t) // Look-ahead update
//! ```
//!
//! Where:
//! - `g_t` is the gradient at step t (with optional weight decay: g_t + λ * θ_{t-1})
//! - `v_t` is the velocity (momentum buffer)
//! - `μ` is the momentum coefficient (typically 0.9)
//! - `α` is the learning rate
//! - `d` is the dampening factor (typically 0.0)
//! - `λ` is the weight decay coefficient
//!
//! ## Examples
//!
//! ### Basic SGD (no momentum)
//! ```rust
//! # use torsh_tensor::creation::randn;
//! # use torsh_core::error::Result;
//! # fn main() -> Result<()> {
//! use torsh_optim::{SGD, Optimizer};
//! use torsh_tensor::Tensor;
//! use parking_lot::RwLock;
//! use std::sync::Arc;
//!
//! // Create parameters
//! let weight = Arc::new(RwLock::new(randn::<f32>(&[10, 20])?));
//! let bias = Arc::new(RwLock::new(randn::<f32>(&[20])?));
//! let params = vec![weight.clone(), bias.clone()];
//!
//! // Create basic SGD optimizer
//! let mut optimizer = SGD::new(
//! params,
//! 0.01, // learning rate
//! None, // no momentum
//! None, // no dampening
//! None, // no weight decay
//! false // no Nesterov
//! );
//!
//! // Training loop
//! for _epoch in 0..100 {
//! // ... compute gradients via backward() ...
//!
//! // Update parameters
//! optimizer.step()?;
//! optimizer.zero_grad();
//! }
//! # Ok(())
//! # }
//! ```
//!
//! ### SGD with Momentum (Recommended for CV)
//! ```rust
//! # use torsh_tensor::creation::randn;
//! # use torsh_core::error::Result;
//! # use parking_lot::RwLock;
//! # use std::sync::Arc;
//! # fn main() -> Result<()> {
//! use torsh_optim::sgd::SGDBuilder;
//!
//! let params = vec![Arc::new(RwLock::new(randn::<f32>(&[100, 100])?))];
//!
//! // ImageNet-style training (ResNet, VGG, etc.)
//! let optimizer = SGDBuilder::new(0.1) // Initial LR (often use scheduler)
//! .momentum(0.9) // Standard momentum for CV
//! .weight_decay(1e-4) // L2 regularization
//! .build(params);
//! # Ok(())
//! # }
//! ```
//!
//! ### Complete Training Loop Example
//! ```rust
//! # use torsh_tensor::creation::{randn, zeros};
//! # use torsh_core::error::Result;
//! # use parking_lot::RwLock;
//! # use std::sync::Arc;
//! # fn main() -> Result<()> {
//! use torsh_optim::{SGD, Optimizer};
//! use torsh_tensor::Tensor;
//!
//! // Model parameters (e.g., from a neural network)
//! let weight = Arc::new(RwLock::new(randn::<f32>(&[784, 10])?));
//! let bias = Arc::new(RwLock::new(zeros::<f32>(&[10])?));
//! let params = vec![weight.clone(), bias.clone()];
//!
//! // Create SGD optimizer with momentum
//! let mut optimizer = SGD::new(
//! params,
//! 0.01, // learning rate
//! Some(0.9), // momentum
//! None, // dampening
//! Some(5e-4), // weight decay
//! false // Nesterov
//! );
//!
//! // Training loop
//! let epochs = 10;
//! let batches_per_epoch = 100;
//!
//! for epoch in 0..epochs {
//! let mut total_loss = 0.0;
//!
//! for batch in 0..batches_per_epoch {
//! // Forward pass (simplified - actual implementation would use nn::Module)
//! // let output = model.forward(&input)?;
//! // let loss = criterion(&output, &target)?;
//! // let loss_value = loss.to_vec()?[0];
//! // total_loss += loss_value;
//!
//! // Backward pass
//! // loss.backward()?;
//!
//! // Optimizer step
//! optimizer.step()?;
//!
//! // Clear gradients for next iteration
//! optimizer.zero_grad();
//! }
//!
//! // Log progress
//! // println!("Epoch {}: Loss = {:.4}", epoch, total_loss / batches_per_epoch as f32);
//!
//! // Optional: Learning rate scheduling
//! // if epoch > 0 && epoch % 30 == 0 {
//! // let current_lr = optimizer.get_lr()[0];
//! // optimizer.set_lr(current_lr * 0.1); // Decay by 10x
//! // }
//! }
//! # Ok(())
//! # }
//! ```
//!
//! ### Advanced: Nesterov Momentum
//! ```rust
//! # use torsh_tensor::creation::randn;
//! # use torsh_core::error::Result;
//! # use parking_lot::RwLock;
//! # use std::sync::Arc;
//! # fn main() -> Result<()> {
//! use torsh_optim::sgd::SGDBuilder;
//!
//! let params = vec![Arc::new(RwLock::new(randn::<f32>(&[100, 50])?))];
//!
//! // Nesterov accelerated gradient (better momentum for some problems)
//! let optimizer = SGDBuilder::new(0.01)
//! .momentum(0.9)
//! .nesterov(true) // Enable Nesterov acceleration
//! .weight_decay(1e-4)
//! .build(params);
//! # Ok(())
//! # }
//! ```
//!
//! ## Hyperparameter Guidelines
//!
//! ### Learning Rate:
//! - **Critical hyperparameter** - requires careful tuning
//! - **Computer Vision**: Start with 0.1, use learning rate scheduling
//! - **Fine-tuning**: Use 0.001-0.01 for pre-trained models
//! - **Rule of thumb**: Increase LR proportionally with batch size
//! - **Too high**: Training diverges or oscillates
//! - **Too low**: Very slow convergence
//!
//! ### Momentum:
//! - **Standard value**: 0.9 works well for most problems
//! - **Range**: 0.8-0.99 depending on problem
//! - **Higher momentum**: Faster convergence but less stable
//! - **Lower momentum**: More stable but slower
//! - **No momentum**: Only for very small models or specific problems
//!
//! ### Weight Decay:
//! - **Computer Vision**: 1e-4 to 5e-4 (standard for ImageNet)
//! - **Smaller datasets**: Higher values (1e-3 to 1e-2)
//! - **Large datasets**: Lower values (1e-5 to 1e-4)
//! - **Purpose**: L2 regularization to prevent overfitting
//!
//! ### Dampening:
//! - **Usually**: Keep at 0.0 (default)
//! - **Non-zero**: Only for specific optimization problems
//! - **Cannot use with Nesterov**: Nesterov requires dampening = 0
//!
//! ## Performance Tips
//!
//! ### Learning Rate Scheduling:
//! SGD often requires learning rate scheduling for best results:
//! - **Step decay**: Reduce LR by 10x every N epochs
//! - **Cosine annealing**: Smooth decay following cosine curve
//! - **Warm restarts**: Periodically reset to higher learning rate
//!
//! ### Batch Size Scaling:
//! When increasing batch size, scale learning rate proportionally:
//! - Batch size 256 with LR 0.1 → Batch size 512 with LR 0.2
//!
//! ### Gradient Clipping:
//! For RNNs or transformers, combine with gradient clipping:
//! ```rust,ignore
//! clip_grad_norm_(¶ms, max_norm=1.0);
//! optimizer.step()?;
//! ```
//!
//! ## Common Configurations
//!
//! ### ResNet (ImageNet training)
//! ```rust
//! # use torsh_tensor::creation::randn;
//! # use torsh_core::error::Result;
//! # use parking_lot::RwLock;
//! # use std::sync::Arc;
//! # fn main() -> Result<()> {
//! use torsh_optim::sgd::SGDBuilder;
//!
//! let params = vec![Arc::new(RwLock::new(randn::<f32>(&[100, 100])?))];
//! let resnet_optimizer = SGDBuilder::new(0.1)
//! .momentum(0.9)
//! .weight_decay(1e-4)
//! .build(params);
//! // Use with step LR scheduler: decay by 10x at epochs 30, 60, 90
//! # Ok(())
//! # }
//! ```
//!
//! ### Transfer Learning (Fine-tuning)
//! ```rust
//! # use torsh_tensor::creation::randn;
//! # use torsh_core::error::Result;
//! # use parking_lot::RwLock;
//! # use std::sync::Arc;
//! # fn main() -> Result<()> {
//! use torsh_optim::sgd::SGDBuilder;
//!
//! let params = vec![Arc::new(RwLock::new(randn::<f32>(&[100, 100])?))];
//! let finetune_optimizer = SGDBuilder::new(0.001) // Lower LR
//! .momentum(0.9)
//! .weight_decay(5e-4) // Higher regularization
//! .build(params);
//! # Ok(())
//! # }
//! ```
//!
//! ## Troubleshooting
//!
//! ### Loss not decreasing:
//! 1. Learning rate too low - increase by 10x
//! 2. Gradients vanishing - check gradient norms
//! 3. Wrong initialization - use proper weight initialization
//!
//! ### Loss diverging (NaN):
//! 1. Learning rate too high - decrease by 10x
//! 2. Gradient explosion - add gradient clipping
//! 3. Numerical instability - check for inf/nan in data
//!
//! ### Slow convergence:
//! 1. Add momentum (0.9) if not using
//! 2. Increase learning rate
//! 3. Try learning rate warmup for first few epochs
//!
//! ### Poor generalization:
//! 1. Increase weight decay
//! 2. Use learning rate scheduling
//! 3. Consider data augmentation
//!
//! ## Comparison with Other Optimizers
//!
//! - **vs Adam**: SGD often generalizes better but requires more tuning
//! - **vs AdamW**: Use SGD for CV, AdamW for transformers
//! - **vs RMSprop**: SGD more stable, RMSprop adapts per-parameter
//!
//! ## See Also
//!
//! - [`Adam`](crate::Adam) - Adaptive learning rate optimizer
//! - [`AdamW`](crate::AdamW) - Adam with decoupled weight decay
//! - [`RMSprop`](crate::RMSprop) - Root mean square propagation
//!
//! ## References
//! - [Original SGD paper](http://www.cs.toronto.edu/~hinton/absps/momentum.pdf)
//! - [On the importance of initialization and momentum](http://proceedings.mlr.press/v28/sutskever13.html)
//! - [Nesterov Accelerated Gradient](http://mpawankumar.info/teaching/cdt-big-data/nesterov83.pdf)
use crate::;
// Temporarily disable scirs2 integration
// use scirs2::optim::sgd::SGD as SciSGD;
use RwLock;
use HashMap;
use Add;
use Arc;
use Result;
use Tensor;
/// SGD optimizer with momentum and Nesterov acceleration
///
/// Stochastic Gradient Descent (SGD) is the foundational optimization algorithm for training
/// neural networks. Despite its simplicity, SGD with momentum remains one of the most effective
/// optimizers, particularly for computer vision tasks.
///
/// # Algorithm Overview
///
/// SGD updates parameters by moving in the direction of the negative gradient. With momentum,
/// SGD accumulates a velocity vector in directions of persistent gradient reduction, which
/// helps accelerate convergence and dampen oscillations.
///
/// # Parameters
///
/// * `lr` - Learning rate (required). Typical range: [1e-4, 0.1]
/// - **Computer Vision**: Start with 0.1, use learning rate scheduling
/// - **Fine-tuning**: 0.001-0.01 for pre-trained models
/// - **Critical**: Requires more careful tuning than Adam
/// * `momentum` - Momentum factor (default: 0.0). Typical: 0.9
/// - Accelerates convergence by accumulating velocity
/// - 0.0 = no momentum, 0.9 = standard for CV, 0.99 = high momentum
/// * `dampening` - Dampening for momentum (default: 0.0)
/// - Usually kept at 0.0
/// - Must be 0.0 if using Nesterov
/// * `weight_decay` - L2 regularization coefficient (default: 0.0)
/// - Computer Vision: 1e-4 to 5e-4
/// - Helps prevent overfitting
/// * `nesterov` - Enable Nesterov momentum (default: false)
/// - Improved momentum with look-ahead
/// - Requires momentum > 0 and dampening = 0
///
/// # When to Use SGD
///
/// SGD is preferred when:
/// - Training convolutional neural networks (ResNet, VGG, EfficientNet)
/// - Generalization performance is critical
/// - You can afford hyperparameter tuning
/// - Training large-scale computer vision models
/// - Fine-tuning pre-trained models
///
/// # Performance Characteristics
///
/// - **Memory Usage**: Minimal (only momentum buffer if enabled)
/// - **Convergence Speed**: Moderate (requires good hyperparameters)
/// - **Hyperparameter Sensitivity**: High (learning rate critical)
/// - **Generalization**: Excellent (often better than adaptive methods)
///
/// # Example: Training a Simple Model
///
/// ```rust
/// # use torsh_tensor::creation::{randn, zeros};
/// # use torsh_core::error::Result;
/// # fn main() -> Result<()> {
/// use torsh_optim::{SGD, Optimizer};
/// use torsh_tensor::Tensor;
/// use parking_lot::RwLock;
/// use std::sync::Arc;
///
/// // Create model parameters
/// let weight = Arc::new(RwLock::new(randn::<f32>(&[784, 10])?));
/// let bias = Arc::new(RwLock::new(zeros::<f32>(&[10])?));
/// let params = vec![weight, bias];
///
/// // Create SGD optimizer with momentum
/// let mut optimizer = SGD::new(
/// params,
/// 0.01, // learning rate
/// Some(0.9), // momentum
/// None, // dampening
/// Some(1e-4), // weight decay
/// false // Nesterov
/// );
///
/// // Training step
/// // ... forward pass and loss computation ...
/// // loss.backward()?;
/// optimizer.step()?;
/// optimizer.zero_grad();
/// # Ok(())
/// # }
/// ```
///
/// # Example: Using the Builder Pattern
///
/// ```rust
/// # use torsh_tensor::creation::randn;
/// # use torsh_core::error::Result;
/// # use parking_lot::RwLock;
/// # use std::sync::Arc;
/// # fn main() -> Result<()> {
/// use torsh_optim::sgd::SGDBuilder;
///
/// let params = vec![Arc::new(RwLock::new(randn::<f32>(&[100, 50])?))];
///
/// let optimizer = SGDBuilder::new(0.01)
/// .momentum(0.9)
/// .weight_decay(1e-4)
/// .nesterov(true)
/// .build(params);
/// # Ok(())
/// # }
/// ```
/// Builder for SGD optimizer