Base
BaseOptimizer
Bases: ABC, Optimizer
Base optimizer class. Provides common functionalities for the optimizers.
Source code in pytorch_optimizer/base/optimizer.py
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 | |
apply_adam_debias(adam_debias, step_size, bias_correction1)
staticmethod
Apply AdamD variant.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adam_debias
|
bool
|
If True, only corrects the denominator to avoid inflating step sizes early in training. |
required |
step_size
|
float
|
The step size for the update. |
required |
bias_correction1
|
float
|
The bias correction factor for the first moment. |
required |
Source code in pytorch_optimizer/base/optimizer.py
233 234 235 236 237 238 239 240 241 242 243 | |
apply_ams_bound(ams_bound, exp_avg_sq, max_exp_avg_sq, eps, exp_avg_sq_eps=1e-15)
staticmethod
Apply AMSBound variant.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ams_bound
|
bool
|
Whether to apply the AMSBound variant. |
required |
exp_avg_sq
|
Tensor
|
Exponential moving average of squared gradients. |
required |
max_exp_avg_sq
|
Optional[Tensor]
|
Maximum of all exp_avg_sq elements, for AMSBound. |
required |
eps
|
float
|
Small epsilon value for numerical stability. |
required |
exp_avg_sq_eps
|
float
|
Epsilon used specifically for numerical stability in exp_avg_sq computations. |
1e-15
|
Source code in pytorch_optimizer/base/optimizer.py
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 | |
apply_cautious(update, grad)
staticmethod
Apply the Cautious Optimizer feature.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
update
|
Tensor
|
Update tensor, masked in-place. |
required |
grad
|
Tensor
|
Gradient tensor. |
required |
Source code in pytorch_optimizer/base/optimizer.py
349 350 351 352 353 354 355 356 357 358 359 360 | |
apply_cautious_weight_decay(p, update, lr, weight_decay)
staticmethod
Apply cautious weight decay (CWD) in an in-place manner.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
p
|
Tensor
|
Parameter tensor to apply weight decay to. |
required |
update
|
Tensor
|
update tensor. |
required |
lr
|
float
|
Learning rate to scale the update. |
required |
weight_decay
|
float
|
Weight decay coefficient (L2 penalty). |
required |
Source code in pytorch_optimizer/base/optimizer.py
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | |
apply_weight_decay(p, grad, lr, weight_decay, weight_decouple, fixed_decay, ratio=None)
staticmethod
Apply weight decay in an in-place manner.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
p
|
Tensor
|
Parameter tensor to apply weight decay to. |
required |
grad
|
Tensor
|
Gradient tensor of parameter p. |
required |
lr
|
float
|
Learning rate to scale the update. |
required |
weight_decay
|
float
|
Weight decay coefficient (L2 penalty). |
required |
weight_decouple
|
bool
|
If True, applies decoupled weight decay as in AdamW. |
required |
fixed_decay
|
bool
|
If True, fixes weight decay to not depend on learning rate. |
required |
ratio
|
Optional[float]
|
Optional scaling factor for weight decay. |
None
|
Source code in pytorch_optimizer/base/optimizer.py
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 | |
apply_weight_decay_foreach(params, grads, lr, weight_decay, weight_decouple, fixed_decay)
staticmethod
Apply weight decay to a list of parameters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
params
|
List[Tensor]
|
List of parameter tensors. |
required |
grads
|
List[Tensor]
|
List of gradient tensors. |
required |
lr
|
Union[List[float], List[Tensor], float, Tensor]
|
Learning rate. |
required |
weight_decay
|
float
|
Weight decay coefficient. |
required |
weight_decouple
|
bool
|
If True, applies decoupled weight decay as in AdamW. |
required |
fixed_decay
|
bool
|
If True, fixes weight decay to not depend on learning rate. |
required |
Source code in pytorch_optimizer/base/optimizer.py
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 | |
approximate_sq_grad(exp_avg_sq_row, exp_avg_sq_col, output)
staticmethod
Get approximation of EMA of squared gradient.
Source code in pytorch_optimizer/base/optimizer.py
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 | |
can_use_foreach(group, foreach)
staticmethod
Check if foreach operations can be used for this parameter group.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
group
|
ParamGroup
|
Parameter group dictionary. |
required |
foreach
|
Optional[bool]
|
User-specified foreach preference (None for auto-detect). |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if foreach operations should be used, False otherwise. |
Source code in pytorch_optimizer/base/optimizer.py
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 | |
collect_trainable_params(group, state, state_keys=None)
staticmethod
Collect trainable parameters, gradients, and state tensors from a group.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
group
|
ParamGroup
|
Parameter group dictionary. |
required |
state
|
State
|
Optimizer state dictionary. |
required |
state_keys
|
Optional[List[str]]
|
List of state keys to collect (e.g., ['exp_avg', 'exp_avg_sq']). |
None
|
Returns:
| Type | Description |
|---|---|
List[Tensor]
|
Tuple containing: |
List[Tensor]
|
|
Dict[str, List[Tensor]]
|
|
Tuple[List[Tensor], List[Tensor], Dict[str, List[Tensor]]]
|
|
Source code in pytorch_optimizer/base/optimizer.py
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 | |
compute_hutchinson_hessian(param_groups, state, num_samples=1, alpha=1.0, distribution='gaussian')
staticmethod
Hutchinson's approximate Hessian, added to the state under key hessian.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
param_groups
|
ParamsT
|
Parameter groups from the optimizer. |
required |
state
|
State
|
Optimizer state dictionary. |
required |
num_samples
|
int
|
Number of times to sample noise vector |
1
|
alpha
|
float
|
Scaling factor for the Hessian estimate. |
1.0
|
distribution
|
HutchinsonG
|
Type of noise distribution used (e.g., Rademacher). |
'gaussian'
|
Source code in pytorch_optimizer/base/optimizer.py
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 | |
debias(beta, step)
staticmethod
Adam-style debias correction.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
beta
|
float
|
Exponential decay rate for moment estimates. |
required |
step
|
int
|
Current optimization step number. |
required |
Source code in pytorch_optimizer/base/optimizer.py
208 209 210 211 212 213 214 215 216 217 | |
debias_beta(beta, step)
staticmethod
Apply the Adam-style debias correction into beta.
Simplified version of \^{beta} = beta * (1.0 - beta ** (step - 1)) / (1.0 - beta ** step)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
beta
|
float
|
The original beta decay rate. |
required |
step
|
int
|
Current optimization step number. |
required |
Source code in pytorch_optimizer/base/optimizer.py
219 220 221 222 223 224 225 226 227 228 229 230 231 | |
get_adanorm_gradient(grad, adanorm, exp_grad_norm=None, r=0.95)
staticmethod
Get AdaNorm gradient.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
grad
|
Tensor
|
Gradient. |
required |
adanorm
|
bool
|
Whether to use the AdaNorm variant. |
required |
exp_grad_norm
|
Optional[Tensor]
|
Exponential moving average of gradient norm. |
None
|
r
|
Optional[float]
|
EMA factor; between 0.9 and 0.99 is preferred. |
0.95
|
Source code in pytorch_optimizer/base/optimizer.py
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | |
get_rectify_step_size(is_rectify, step, lr, beta2, n_sma_threshold, degenerated_to_sgd)
staticmethod
Get step size for rectify optimizer.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
is_rectify
|
bool
|
Whether to apply the rectify variant. |
required |
step
|
int
|
Current step number. |
required |
lr
|
float
|
Base learning rate. |
required |
beta2
|
float
|
Beta2 parameter from optimizer (momentum term). |
required |
n_sma_threshold
|
float
|
Simple Moving Average (SMA) threshold for rectification. |
required |
degenerated_to_sgd
|
bool
|
Whether to degenerate to SGD if below threshold. |
required |
Source code in pytorch_optimizer/base/optimizer.py
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 | |
get_rms(x)
staticmethod
Get RMS.
Source code in pytorch_optimizer/base/optimizer.py
311 312 313 314 315 316 317 318 319 320 321 | |
get_stable_adamw_rms(grad, exp_avg_sq, eps=1e-16)
staticmethod
Get StableAdamW RMS.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
grad
|
Tensor
|
gradient. |
required |
exp_avg_sq
|
Tensor
|
Exponential moving average of squared gradient. |
required |
eps
|
float
|
Small value to prevent division by zero. |
1e-16
|
Source code in pytorch_optimizer/base/optimizer.py
468 469 470 471 472 473 474 475 476 477 478 | |
init_group(group, **kwargs)
abstractmethod
Initialize the group of the optimizer and return is_complex.
Source code in pytorch_optimizer/base/optimizer.py
559 560 561 562 | |
load_optimizer(optimizer, **kwargs)
staticmethod
Build torch.optim.Optimizer class.
Source code in pytorch_optimizer/base/optimizer.py
29 30 31 32 33 34 35 36 37 38 39 | |
maximize_gradient(grad, maximize=False)
staticmethod
Maximize the objective with respect to the params, instead of minimizing.
Source code in pytorch_optimizer/base/optimizer.py
576 577 578 579 580 | |
set_hessian(param_groups, state, hessian)
staticmethod
Set hessian to state from external source. Generally useful when using functorch as a base.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
param_groups
|
ParamsT
|
PARAMETERS. Parameter groups from optimizer. |
required |
state
|
State
|
STATE. Optimizer state dictionary. |
required |
hessian
|
List[Tensor]
|
List[torch.Tensor]. Sequence of Hessian tensors to set. |
required |
Example
Hutchinson's Estimator using Hessian-vector product (HVP)
noise = tree_map(lambda v: torch.randn_like(v), params) loss_, hvp_est = jvp(grad(run_model_fn), (params,), (noise,)) hessian_diag_est = tree_map(lambda a, b: a * b, hvp_est, noise)
optimizer.set_hessian(hessian_diag_est)
OR
optimizer.step(hessian=hessian_diag_est)
Source code in pytorch_optimizer/base/optimizer.py
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 | |
view_as_real(param, *state_and_grads)
staticmethod
View imaginary tensors as real tensors.
Source code in pytorch_optimizer/base/optimizer.py
564 565 566 567 568 569 570 571 572 573 574 | |
zero_hessian(param_groups, state, pre_zero=True)
staticmethod
Zero-out Hessian.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
param_groups
|
ParamsT
|
Parameter groups from the optimizer. |
required |
state
|
State
|
Optimizer state dictionary. |
required |
pre_zero
|
bool
|
If True, zero-out the Hessian before computing/updating it. |
True
|
Source code in pytorch_optimizer/base/optimizer.py
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | |