Skip to main content

Algorithms for inverse design

Project description

invrs-opt - Optimization algorithms for inverse design

v0.9.4

Overview

The invrs-opt package defines an optimizer API intended for topology optimization, inverse design, or AI-guided design. It (currently) implements the L-BFGS-B optimization algorithm along with some variants. The API is intended to be general so that new algorithms can be accommodated, and is inspired by the functional optimizer approach used in jax. Example usage is as follows:

initial_params = ...

optimizer = invrs_opt.lbfgsb()
state = optimizer.init(initial_params)

for _ in range(steps):
    params = optimizer.params(state)
    value, grad = jax.value_and_grad(loss_fn)(params)
    state = optimizer.update(grad=grad, value=value, params=params, state=state)

Optimizers in invrs-opt are compatible with custom types defined in the totypes package. The basic lbfgsb optimizer enforces bounds for custom types, while the density_lbfgsb optimizer implements a filter-and-threshold operation for DensityArray2D types to ensure that solutions have the correct length scale.

Install

pip install invrs_opt

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

invrs_opt-0.9.4.tar.gz (46.3 kB view details)

Uploaded Source

Built Distribution

invrs_opt-0.9.4-py3-none-any.whl (49.6 kB view details)

Uploaded Python 3

File details

Details for the file invrs_opt-0.9.4.tar.gz.

File metadata

  • Download URL: invrs_opt-0.9.4.tar.gz
  • Upload date:
  • Size: 46.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for invrs_opt-0.9.4.tar.gz
Algorithm Hash digest
SHA256 ca422e1223a40a2193d67e86a3e650399b277f8a8dbfc730e7344dadf810b741
MD5 85a22e8a349ea53101725027f1ea4fcd
BLAKE2b-256 e2951538408e8f2c41e1c210d8a3decd85a65946f7d7fe9a67842e637f5db107

See more details on using hashes here.

File details

Details for the file invrs_opt-0.9.4-py3-none-any.whl.

File metadata

  • Download URL: invrs_opt-0.9.4-py3-none-any.whl
  • Upload date:
  • Size: 49.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for invrs_opt-0.9.4-py3-none-any.whl
Algorithm Hash digest
SHA256 93e557e8a748f232150c4f445ca10b964a8454326e4ce0756fa4fe0b011b17b6
MD5 d2add932001398b493aa9df552d5627a
BLAKE2b-256 de99c14fc7ac07a68b92328360443a419f62135ea522e3b753880dd333619a67

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page