madgrad


Namemadgrad JSON
Version 1.3 PyPI version JSON
download
home_pagehttps://github.com/facebookresearch/madgrad
SummaryA general purpose PyTorch Optimizer
upload_time2023-04-11 19:32:30
maintainer
docs_urlNone
authorAaron Defazio
requires_python>=3.6
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# MADGRAD Optimization Method

A Momentumized, Adaptive, Dual Averaged Gradient Method for Stochastic Optimization

Documentation availiable at https://madgrad.readthedocs.io/en/latest/.


``` pip install madgrad ```

Try it out! A best-of-both-worlds optimizer with the generalization performance of SGD and at least as fast convergence as that of Adam, often faster. A drop-in torch.optim implementation `madgrad.MADGRAD` is provided, as well as a FairSeq wrapped instance. For FairSeq, just import madgrad anywhere in your project files and use the `--optimizer madgrad` command line option, together with `--weight-decay`, `--momentum`, and optionally `--madgrad_eps`.

The madgrad.py file containing the optimizer can be directly dropped into any PyTorch project if you don't want to install via pip. If you are using fairseq, you need the acompanying fairseq_madgrad.py file as well.

## Things to note:
 - You may need to use a lower weight decay than you are accustomed to. Often 0.
 - You should do a full learning rate sweep as the optimal learning rate will be different from SGD or Adam. Best LR values we found were 2.5e-4 for 152 layer PreActResNet on CIFAR10, 0.001 for ResNet-50 on ImageNet, 0.025 for IWSLT14 using `transformer_iwslt_de_en` and 0.005 for RoBERTa training on BookWiki using `BERT_BASE`. On NLP models gradient clipping also helped.

# Mirror MADGRAD
The mirror descent version of MADGRAD is also included as `madgrad.MirrorMADGRAD`. This version works extremely well, even better than MADGRAD, on large-scale transformer training. This version is recommended for any problem where the datasets are big enough that generalization gap is not an issue.

As the mirror descent version does not implicitly regularize, you can usually use weight
decay values that work well with other optimizers.

# Tech Report

[Adaptivity without Compromise: A Momentumized, Adaptive, Dual Averaged Gradient Method for Stochastic Optimization](https://arxiv.org/abs/2101.11075)

We introduce MADGRAD, a novel optimization method in the family of AdaGrad adaptive gradient methods. MADGRAD shows excellent performance on deep learning optimization problems from multiple fields, including classification and image-to-image tasks in vision, and recurrent and bidirectionally-masked models in natural language processing. For each of these tasks, MADGRAD matches or outperforms both SGD and ADAM in test set performance, even on problems for which adaptive methods normally perform poorly.


```BibTeX
@misc{defazio2021adaptivity,
      title={Adaptivity without Compromise: A Momentumized, Adaptive, Dual Averaged Gradient Method for Stochastic Optimization}, 
      author={Aaron Defazio and Samy Jelassi},
      year={2021},
      eprint={2101.11075},
      archivePrefix={arXiv},
      primaryClass={cs.LG}
}
```

# Results

![vision](https://github.com/facebookresearch/madgrad/blob/main/figures/vision.png?raw=true)
![nlp](https://github.com/facebookresearch/madgrad/blob/main/figures/nlp.png?raw=true)

# License

MADGRAD is licensed under the [MIT License](LICENSE).



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/facebookresearch/madgrad",
    "name": "madgrad",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "",
    "author": "Aaron Defazio",
    "author_email": "adefazio@fb.com",
    "download_url": "https://files.pythonhosted.org/packages/18/ea/95435c2c4d55f51375468dfd1721d88a73f93991b765c5a04366d36472f2/madgrad-1.3.tar.gz",
    "platform": null,
    "description": "\n# MADGRAD Optimization Method\n\nA Momentumized, Adaptive, Dual Averaged Gradient Method for Stochastic Optimization\n\nDocumentation availiable at https://madgrad.readthedocs.io/en/latest/.\n\n\n``` pip install madgrad ```\n\nTry it out! A best-of-both-worlds optimizer with the generalization performance of SGD and at least as fast convergence as that of Adam, often faster. A drop-in torch.optim implementation `madgrad.MADGRAD` is provided, as well as a FairSeq wrapped instance. For FairSeq, just import madgrad anywhere in your project files and use the `--optimizer madgrad` command line option, together with `--weight-decay`, `--momentum`, and optionally `--madgrad_eps`.\n\nThe madgrad.py file containing the optimizer can be directly dropped into any PyTorch project if you don't want to install via pip. If you are using fairseq, you need the acompanying fairseq_madgrad.py file as well.\n\n## Things to note:\n - You may need to use a lower weight decay than you are accustomed to. Often 0.\n - You should do a full learning rate sweep as the optimal learning rate will be different from SGD or Adam. Best LR values we found were 2.5e-4 for 152 layer PreActResNet on CIFAR10, 0.001 for ResNet-50 on ImageNet, 0.025 for IWSLT14 using `transformer_iwslt_de_en` and 0.005 for RoBERTa training on BookWiki using `BERT_BASE`. On NLP models gradient clipping also helped.\n\n# Mirror MADGRAD\nThe mirror descent version of MADGRAD is also included as `madgrad.MirrorMADGRAD`. This version works extremely well, even better than MADGRAD, on large-scale transformer training. This version is recommended for any problem where the datasets are big enough that generalization gap is not an issue.\n\nAs the mirror descent version does not implicitly regularize, you can usually use weight\ndecay values that work well with other optimizers.\n\n# Tech Report\n\n[Adaptivity without Compromise: A Momentumized, Adaptive, Dual Averaged Gradient Method for Stochastic Optimization](https://arxiv.org/abs/2101.11075)\n\nWe introduce MADGRAD, a novel optimization method in the family of AdaGrad adaptive gradient methods. MADGRAD shows excellent performance on deep learning optimization problems from multiple fields, including classification and image-to-image tasks in vision, and recurrent and bidirectionally-masked models in natural language processing. For each of these tasks, MADGRAD matches or outperforms both SGD and ADAM in test set performance, even on problems for which adaptive methods normally perform poorly.\n\n\n```BibTeX\n@misc{defazio2021adaptivity,\n      title={Adaptivity without Compromise: A Momentumized, Adaptive, Dual Averaged Gradient Method for Stochastic Optimization}, \n      author={Aaron Defazio and Samy Jelassi},\n      year={2021},\n      eprint={2101.11075},\n      archivePrefix={arXiv},\n      primaryClass={cs.LG}\n}\n```\n\n# Results\n\n![vision](https://github.com/facebookresearch/madgrad/blob/main/figures/vision.png?raw=true)\n![nlp](https://github.com/facebookresearch/madgrad/blob/main/figures/nlp.png?raw=true)\n\n# License\n\nMADGRAD is licensed under the [MIT License](LICENSE).\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A general purpose PyTorch Optimizer",
    "version": "1.3",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18ea95435c2c4d55f51375468dfd1721d88a73f93991b765c5a04366d36472f2",
                "md5": "a346d364aa0cadea5e53dd6cfc37615e",
                "sha256": "fef4b077185e540aabe95899600d655db10be23bcbfdaccf9818c2c6e435c18f"
            },
            "downloads": -1,
            "filename": "madgrad-1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "a346d364aa0cadea5e53dd6cfc37615e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 7934,
            "upload_time": "2023-04-11T19:32:30",
            "upload_time_iso_8601": "2023-04-11T19:32:30.879920Z",
            "url": "https://files.pythonhosted.org/packages/18/ea/95435c2c4d55f51375468dfd1721d88a73f93991b765c5a04366d36472f2/madgrad-1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-11 19:32:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "facebookresearch",
    "github_project": "madgrad",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "madgrad"
}
        
Elapsed time: 0.15204s