├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── .gitignore ├── Makefile ├── conf.py ├── index.rst ├── make.bat ├── optim.rst ├── patch.rst ├── toplevel.rst └── utils.rst ├── examples ├── README.md ├── deep-energy-mnist.py ├── maml-omniglot.py ├── requirements.txt └── support │ └── omniglot_loaders.py ├── higher ├── __init__.py ├── optim.py ├── patch.py └── utils.py ├── requirements.txt ├── resources ├── .gitignore ├── HigherOverview.pdf ├── higher_logo.png └── higher_logo_banner.png ├── setup.py ├── tests ├── __init__.py ├── test_higher.py ├── test_optim.py └── test_patch.py └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/optim.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/docs/optim.rst -------------------------------------------------------------------------------- /docs/patch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/docs/patch.rst -------------------------------------------------------------------------------- /docs/toplevel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/docs/toplevel.rst -------------------------------------------------------------------------------- /docs/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/docs/utils.rst -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/deep-energy-mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/examples/deep-energy-mnist.py -------------------------------------------------------------------------------- /examples/maml-omniglot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/examples/maml-omniglot.py -------------------------------------------------------------------------------- /examples/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/examples/requirements.txt -------------------------------------------------------------------------------- /examples/support/omniglot_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/examples/support/omniglot_loaders.py -------------------------------------------------------------------------------- /higher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/higher/__init__.py -------------------------------------------------------------------------------- /higher/optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/higher/optim.py -------------------------------------------------------------------------------- /higher/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/higher/patch.py -------------------------------------------------------------------------------- /higher/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/higher/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/resources/.gitignore -------------------------------------------------------------------------------- /resources/HigherOverview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/resources/HigherOverview.pdf -------------------------------------------------------------------------------- /resources/higher_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/resources/higher_logo.png -------------------------------------------------------------------------------- /resources/higher_logo_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/resources/higher_logo_banner.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_higher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/tests/test_higher.py -------------------------------------------------------------------------------- /tests/test_optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/tests/test_optim.py -------------------------------------------------------------------------------- /tests/test_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/higher/HEAD/tests/test_patch.py -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.2.1 2 | --------------------------------------------------------------------------------