├── .gitignore ├── LICENSE ├── README.md ├── example_config.jsonnet ├── inner_features.py ├── inner_optimizer.py └── registry.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/LHOPT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/LHOPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/LHOPT/HEAD/README.md -------------------------------------------------------------------------------- /example_config.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/LHOPT/HEAD/example_config.jsonnet -------------------------------------------------------------------------------- /inner_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/LHOPT/HEAD/inner_features.py -------------------------------------------------------------------------------- /inner_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/LHOPT/HEAD/inner_optimizer.py -------------------------------------------------------------------------------- /registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/LHOPT/HEAD/registry.py --------------------------------------------------------------------------------