An optimizer with Adam-atan2 update rule for PyTorch. Current version 0.3.4, released 2025. Active development with periodic updates.
pip install adam-atan2-pytorchNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Minimal usage example: create model, optimizer, run one step.
from adam_atan2_pytorch import AdamAtan2
Upgrade PyTorch to >=1.13.0
Use optimizer = AdamAtan2(params, lr=1e-3, betas=(0.9, 0.999)) instead of betas1 and betas2.