Junaid199f / optformer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OptFormer: Transformer-based framework for Hyperparameter Optimization

This is the code used for the paper Towards Learning Universal Hyperparameter Optimizers with Transformers (NeurIPS 2022).

Installation

All base dependencies can be installed from requirements.txt. Afterwards, T5X must be manually installed.

Usage

Pre-trained OptFormer as a Policy (Example Notebook)

To use our OptFormer pre-trained individually on public BBOB and HPO-B benchmarks, follow the steps:

  1. (Optional) Download the model checkpoint from gs://gresearch/optformer/model_checkpoints for faster loading.
  2. Load the model checkpoint into the InferenceModel, as shown in policies_test.py.

The InferenceModel will then be wrapped into the OptFormerDesigner, which follows the same API as a OSS Vizier standard Designer.

Training the OptFormer

To train an OptFormer model, the data will need to consist of a large collection of studies. This data may come from two sources:

  1. Our generated dataset, in the form of a Tensorflow Dataset (TFDS), which can be found in [TODO]. Training using this data converged to the model checkpoint found above.
  2. Custom user-generated studies, which can be done using OSS Vizier's benchmarking pipeline.

Paper Results

Numerical results used in the paper (for e.g. plotting and comparisons) can be found in the results folder.

Citation

If you found this codebase useful, please consider citing our paper. Thanks!

@inproceedings{optformer,
  author    = {Yutian Chen and
               Xingyou Song and
               Chansoo Lee and
               Zi Wang and
               Qiuyi Zhang and
               David Dohan and
               Kazuya Kawakami and
               Greg Kochanski and
               Arnaud Doucet and
               Marc'Aurelio Ranzato and
               Sagi Perel and
               Nando de Freitas},
  title     = {Towards Learning Universal Hyperparameter Optimizers with Transformers},
  booktitle = {Neural Information Processing Systems (NeurIPS) 2022},
  year      = {2022}
}

Disclaimer: This is not an officially supported Google product.

About

License:Apache License 2.0


Languages

Language:Jupyter Notebook 53.9%Language:Python 46.1%