Skip to content

OscarcarLi/learned_optimization

 
 

Repository files navigation

learned_optimization: Meta-learning optimizers and more with JAX

Documentation Status License

learned_optimization is a research codebase for training, designing, evaluating, and applying learned optimizers, and for meta-training of dynamical systems more broadly. It implements hand-designed and learned optimizers, tasks to meta-train and meta-test them, and outer-training algorithms such as ES, PES, and truncated backprop through time.

To get started see our documentation.

Quick Start Colab Notebooks

Our documentation can also be run as colab notebooks! We recommend running these notebooks with a free accelerator (TPU or GPU) in colab (go to Runtime -> Change runtime type).

learned_optimization tutorial sequence

  1. Introduction : Open In Colab
  2. Creating custom tasks: Open In Colab
  3. Creating custom tasks: Open In Colab
  4. Gradient estimators: Open In Colab
  5. Meta training: Open In Colab
  6. Custom learned optimizers: Open In Colab

Build a learned optimizer from scratch

Simple, self-contained, learned optimizer example that does not depend on the learned_optimization library: Open In Colab

Local Installation

We strongly recommend using virtualenv to work with this package.

pip3 install virtualenv git clone [email protected]:google/learned_optimization.git cd learned_optimization python3 -m venv env source env/bin/activate pip install -e .

Train a learned optimizer example

To train a learned optimizer on a simple inner-problem, run the following:

python3 -m learned_optimization.examples.simple_lopt_train --train_log_dir=/tmp/logs_folder --alsologtostderr

This will first use tfds to download data, then start running. After a few minutes you should see numbers printed.

A tensorboard can be pointed at this directory for visualization of results. Note this will run very slowly without an accelerator.

Need help? Have a question?

File a github issue! We will do our best to respond promptly.

Publications which use learned_optimization

Wrote a paper or blog post that uses learned_optimization? Add it to the list!

Development / Running tests

We locate test files next to the related source as opposed to in a separate tests/ folder. Each test can be run directly, or with pytest (e.g. python3 -m pytest learned_optimization/outer_trainers/). Pytest can also be used to run all tests with python3 -m pytest, but this will take quite some time.

If something is broken please file an issue and we will take a look!

Disclaimer

learned_optimization is not an official Google product.

About

No description, website, or topics provided.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%