Name | invrs-gym JSON |
Version |
1.4.4
JSON |
| download |
home_page | None |
Summary | A collection of inverse design challenges |
upload_time | 2024-12-12 17:05:25 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.7 |
license | MIT License Copyright (c) 2023 The INVRS-IO authors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
topology
optimization
jax
inverse design
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# invrs-gym
`v1.4.4`
## Overview
The `invrs_gym` package is an open-source gym containing a diverse set of photonic design challenges, which are relevant for a wide range of applications such as AR/VR, optical networking, LIDAR, and others. For a full description of the gym, see the [manuscript](https://arxiv.org/abs/2410.24132).
![invrs-gym challenge examples](https://github.com/invrs-io/gym/blob/main/docs/img/challenges.png?raw=true)
Each of the challenges consists of a high-dimensional problem in which a physical structure (the photonic device) is optimized. The structure includes typically >10,000 degrees of freedom (DoF), generally including one or more arrays representing the structure or patterning of a layer, and may also include scalar variables representing e.g. layer thickness. In general, the DoF must satisfy certain constraints to be physical: thicknesses must be positive, and layer patterns must be _manufacturable_---they must not include features that are too small, or too closely spaced.
In general, we seek optimization techniques that _reliably_ produce manufacturable, high-quality solutions and require reasonable compute resources. Among the techniques that could be applied are topology optimization, inverse design, and AI-guided design.
`invrs_gym` is intended to facilitate research on such methods within the jax ecosystem. It includes several challenges that have been used in previous works, so that researchers may directly compare their results to those of the literature. While some challenges are test problems (e.g. where the structure is two-dimensional, which is unphysical but allows fast simulation), others are actual problems that are relevant e.g. for quantum computing or 3D sensing.
## Key concepts
The key types of the challenge are the `Challenge` and `Component` objects.
The `Component` represents the physical structure to be optimized, and has some intended excitation or operating condition (e.g. illumination with a particular wavelength from a particular direction). The `Component` includes methods to obtain initial parameters, and to compute the _response_ of a component to the excitation.
Each `Challenge` has a `Component` as an attribute, and also has a target that can be used to determine whether particular parameters "solve" the challenge. The `Challenge` also provides functions to compute a scalar loss for use with gradient-based optimization, and additional metrics.
## Example
```python
# Select the challenge.
challenge = invrs_gym.challenges.ceviche_lightweight_waveguide_bend()
# Define loss function, which also returns auxilliary quantities.
def loss_fn(params):
response, aux = challenge.component.response(params)
loss = challenge.loss(response)
eval_metric = challenge.eval_metric(response)
metrics = challenge.metrics(response, params, aux)
return loss, (response, eval_metric, metrics, aux)
value_and_grad_fn = jax.value_and_grad(loss_fn, has_aux=True)
# Select an optimizer.
opt = invrs_opt.density_lbfgsb(beta=4)
# Generate initial parameters, and use these to initialize the optimizer state.
params = challenge.component.init(jax.random.PRNGKey(0))
state = opt.init(params)
# Carry out the optimization.
for i in range(steps):
params = opt.params(state)
(value, (response, eval_metric, metrics, aux)), grad = value_and_grad_fn(params)
state = opt.update(grad=grad, value=value, params=params, state=state)
```
With some plotting, this code will produce the following waveguide bend:
![Animated evolution of waveguide bend design](https://github.com/invrs-io/gym/blob/main/docs/img/waveguide_bend.gif?raw=true)
## Challenges
The current list of challenges is below.
- The **metagrating** challenge involves design of a large-angle beam deflector and is based on the [Metagrating3D](https://github.com/NanoComp/photonics-opt-testbed/tree/main/Metagrating3D) problem from "[Validation and characterization of algorithms and software for photonics inverse design](https://opg.optica.org/josab/abstract.cfm?uri=josab-41-2-A161)" by Chen et al.
- The **diffractive splitter** challenge involves design of a diffractive optic and is based on "[Design and Rigorous Analysis of Non-Paraxial Diffractive Beam Splitter](https://www.lighttrans.com/use-cases/application/design-and-rigorous-analysis-of-non-paraxial-diffractive-beam-splitter.html)", a LightTrans case study.
- The **meta-atom library** challenge is bassed on "[Dispersion-engineered metasurfaces reaching broadband 90% relative diffraction efficiency](https://www.nature.com/articles/s41467-023-38185-2)" by Chen et al., and involves the design of 8 meta-atoms for polarization-insensitive broadband large-area metasurfaces.
- The **bayer sorter** challenge involves the design of metasurface that replaces the color filter in an image sensor, and is based on "[Pixel-level Bayer-type colour router based on metasurfaces](https://www.nature.com/articles/s41467-022-31019-7)" by Zou et al.
- The **metalens** challenge involves design of a 1D achromatic metalens and is based on the [RGB Metalens](https://github.com/NanoComp/photonics-opt-testbed/tree/main/RGB_metalens) problem from "[Validation and characterization of algorithms and software for photonics inverse design](https://opg.optica.org/josab/abstract.cfm?uri=josab-41-2-A161)" by Chen et al.
- The **ceviche** challenges are jax-wrapped versions of the [Ceviche Challenges](https://github.com/google/ceviche-challenges) open-sourced by Google, with defaults matching "[Inverse Design of Photonic Devices with Strict Foundry Fabrication Constraints](https://pubs.acs.org/doi/10.1021/acsphotonics.2c00313)" by Schubert et al.
- The **photon extractor** challenge is based on "[Inverse-designed photon extractors for optically addressable defect qubits](https://opg.optica.org/optica/fulltext.cfm?uri=optica-7-12-1805)" by Chakravarthi et al., and involves design of nanostructures to increase photon collection efficiency for quantum information processing applications.
## Install
```
pip install invrs_gym
```
## Citing the invrs-gym
If you use the gym for your research, please cite,
```
@misc{schubert2024invrsgymtoolkitnanophotonicinverse,
title={invrs-gym: a toolkit for nanophotonic inverse design research},
author={Martin F. Schubert},
year={2024},
eprint={2410.24132},
archivePrefix={arXiv},
primaryClass={physics.optics},
url={https://arxiv.org/abs/2410.24132},
}
```
Please also cite the original paper in which the challenge used was introduced (click to expand).
<details>
<summary>Metagrating challenge</summary>
```
@article{chen2024validation,
title={Validation and characterization of algorithms and software for photonics inverse design},
author={Chen, Mo and Christiansen, Rasmus E and Fan, Jonathan A and I{\c{s}}iklar, G{\"o}ktu{\u{g}} and Jiang, Jiaqi and Johnson, Steven G and Ma, Wenchao and Miller, Owen D and Oskooi, Ardavan and Schubert, Martin F, and Wang, Fengwen and Williamson, Ian A D and Xue, Wenjin and Zou, You},
journal={JOSA B},
volume={41},
number={2},
pages={A161--A176},
year={2024},
publisher={Optica Publishing Group}
}
```
</details>
<details>
<summary>Diffractive splitter challenge</summary>
```
@misc{LightTrans,
author = {LightTrans},
title = {Design and Rigorous Analysis of Non-Paraxial Diffractive Beam Splitter},
howpublished = {\url{https://www.lighttrans.com/use-cases/application/design-and-rigorous-analysis-of-non-paraxial-diffractive-beam-splitter.html}},
note = {Version: 3.1},
}
```
</details>
<details>
<summary>Meta-atom library challenge</summary>
```
@article{chen2023dispersion,
title={Dispersion-engineered metasurfaces reaching broadband 90\% relative diffraction efficiency},
author={Chen, Wei Ting and Park, Joon-Suh and Marchioni, Justin and Millay, Sophia and Yousef, Kerolos MA and Capasso, Federico},
journal={Nature Communications},
volume={14},
number={1},
pages={2544},
year={2023},
publisher={Nature Publishing Group UK London}
}
```
</details>
<details>
<summary>Bayer sorter challenge</summary>
```
@article{zou2022pixel,
title={Pixel-level Bayer-type colour router based on metasurfaces},
author={Zou, Xiujuan and Zhang, Youming and Lin, Ruoyu and Gong, Guangxing and Wang, Shuming and Zhu, Shining and Wang, Zhenlin},
journal={Nature Communications},
volume={13},
number={1},
pages={3288},
year={2022},
publisher={Nature Publishing Group UK London}
}
```
</details>
<details>
<summary>Metalens challenge</summary>
```
@article{chen2024validation,
title={Validation and characterization of algorithms and software for photonics inverse design},
author={Chen, Mo and Christiansen, Rasmus E and Fan, Jonathan A and I{\c{s}}iklar, G{\"o}ktu{\u{g}} and Jiang, Jiaqi and Johnson, Steven G and Ma, Wenchao and Miller, Owen D and Oskooi, Ardavan and Schubert, Martin F, and Wang, Fengwen and Williamson, Ian A D and Xue, Wenjin and Zou, You},
journal={JOSA B},
volume={41},
number={2},
pages={A161--A176},
year={2024},
publisher={Optica Publishing Group}
}
```
</details>
<details>
<summary>Ceviche challenges</summary>
```
@article{chen2024validation,
title={Validation and characterization of algorithms and software for photonics inverse design},
author={Chen, Mo and Christiansen, Rasmus E and Fan, Jonathan A and I{\c{s}}iklar, G{\"o}ktu{\u{g}} and Jiang, Jiaqi and Johnson, Steven G and Ma, Wenchao and Miller, Owen D and Oskooi, Ardavan and Schubert, Martin F, and Wang, Fengwen and Williamson, Ian A D and Xue, Wenjin and Zou, You},
journal={JOSA B},
volume={41},
number={2},
pages={A161--A176},
year={2024},
publisher={Optica Publishing Group}
}
@article{schubert2022inverse,
title={Inverse design of photonic devices with strict foundry fabrication constraints},
author={Schubert, Martin F and Cheung, Alfred KC and Williamson, Ian AD and Spyra, Aleksandra and Alexander, David H},
journal={ACS Photonics},
volume={9},
number={7},
pages={2327--2336},
year={2022},
publisher={ACS Publications}
}
```
</details>
<details>
<summary>Photon extractor challenge</summary>
```
@article{chakravarthi2020inverse,
title={Inverse-designed photon extractors for optically addressable defect qubits},
author={Chakravarthi, Srivatsa and Chao, Pengning and Pederson, Christian and Molesky, Sean and Ivanov, Andrew and Hestroffer, Karine and Hatami, Fariba and Rodriguez, Alejandro W and Fu, Kai-Mei C},
journal={Optica},
volume={7},
number={12},
pages={1805--1811},
year={2020},
publisher={Optica Publishing Group}
}
```
</details>
## Testing
Some tests are marked as slow and are skipped by default. To run these manually, use
```
pytest --runslow
```
Raw data
{
"_id": null,
"home_page": null,
"name": "invrs-gym",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "\"Martin F. Schubert\" <mfschubert@gmail.com>",
"keywords": "topology, optimization, jax, inverse design",
"author": null,
"author_email": "\"Martin F. Schubert\" <mfschubert@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/6a/df/1fc990b87bc19af534d758b7ede1ab0d14715e67f7d87466a03f200427e8/invrs_gym-1.4.4.tar.gz",
"platform": null,
"description": "# invrs-gym\n`v1.4.4`\n\n## Overview\nThe `invrs_gym` package is an open-source gym containing a diverse set of photonic design challenges, which are relevant for a wide range of applications such as AR/VR, optical networking, LIDAR, and others. For a full description of the gym, see the [manuscript](https://arxiv.org/abs/2410.24132).\n\n![invrs-gym challenge examples](https://github.com/invrs-io/gym/blob/main/docs/img/challenges.png?raw=true)\n\nEach of the challenges consists of a high-dimensional problem in which a physical structure (the photonic device) is optimized. The structure includes typically >10,000 degrees of freedom (DoF), generally including one or more arrays representing the structure or patterning of a layer, and may also include scalar variables representing e.g. layer thickness. In general, the DoF must satisfy certain constraints to be physical: thicknesses must be positive, and layer patterns must be _manufacturable_---they must not include features that are too small, or too closely spaced.\n\nIn general, we seek optimization techniques that _reliably_ produce manufacturable, high-quality solutions and require reasonable compute resources. Among the techniques that could be applied are topology optimization, inverse design, and AI-guided design.\n\n`invrs_gym` is intended to facilitate research on such methods within the jax ecosystem. It includes several challenges that have been used in previous works, so that researchers may directly compare their results to those of the literature. While some challenges are test problems (e.g. where the structure is two-dimensional, which is unphysical but allows fast simulation), others are actual problems that are relevant e.g. for quantum computing or 3D sensing.\n\n## Key concepts\nThe key types of the challenge are the `Challenge` and `Component` objects.\n\nThe `Component` represents the physical structure to be optimized, and has some intended excitation or operating condition (e.g.\u00a0illumination with a particular wavelength from a particular direction). The `Component` includes methods to obtain initial parameters, and to compute the _response_ of a component to the excitation.\n\nEach `Challenge` has a `Component` as an attribute, and also has a target that can be used to determine whether particular parameters \"solve\" the challenge. The `Challenge` also provides functions to compute a scalar loss for use with gradient-based optimization, and additional metrics.\n\n## Example\n```python\n# Select the challenge.\nchallenge = invrs_gym.challenges.ceviche_lightweight_waveguide_bend()\n\n# Define loss function, which also returns auxilliary quantities.\ndef loss_fn(params):\n response, aux = challenge.component.response(params)\n loss = challenge.loss(response)\n eval_metric = challenge.eval_metric(response)\n metrics = challenge.metrics(response, params, aux)\n return loss, (response, eval_metric, metrics, aux)\n\nvalue_and_grad_fn = jax.value_and_grad(loss_fn, has_aux=True)\n\n# Select an optimizer.\nopt = invrs_opt.density_lbfgsb(beta=4)\n\n# Generate initial parameters, and use these to initialize the optimizer state.\nparams = challenge.component.init(jax.random.PRNGKey(0))\nstate = opt.init(params)\n\n# Carry out the optimization.\nfor i in range(steps):\n params = opt.params(state)\n (value, (response, eval_metric, metrics, aux)), grad = value_and_grad_fn(params)\n state = opt.update(grad=grad, value=value, params=params, state=state)\n```\nWith some plotting, this code will produce the following waveguide bend:\n\n![Animated evolution of waveguide bend design](https://github.com/invrs-io/gym/blob/main/docs/img/waveguide_bend.gif?raw=true)\n\n## Challenges\nThe current list of challenges is below.\n\n- The **metagrating** challenge involves design of a large-angle beam deflector and is based on the [Metagrating3D](https://github.com/NanoComp/photonics-opt-testbed/tree/main/Metagrating3D) problem from \"[Validation and characterization of algorithms and software for photonics inverse design](https://opg.optica.org/josab/abstract.cfm?uri=josab-41-2-A161)\" by Chen et al.\n- The **diffractive splitter** challenge involves design of a diffractive optic and is based on \"[Design and Rigorous Analysis of Non-Paraxial Diffractive Beam Splitter](https://www.lighttrans.com/use-cases/application/design-and-rigorous-analysis-of-non-paraxial-diffractive-beam-splitter.html)\", a LightTrans case study.\n- The **meta-atom library** challenge is bassed on \"[Dispersion-engineered metasurfaces reaching broadband 90% relative diffraction efficiency](https://www.nature.com/articles/s41467-023-38185-2)\" by Chen et al., and involves the design of 8 meta-atoms for polarization-insensitive broadband large-area metasurfaces.\n- The **bayer sorter** challenge involves the design of metasurface that replaces the color filter in an image sensor, and is based on \"[Pixel-level Bayer-type colour router based on metasurfaces](https://www.nature.com/articles/s41467-022-31019-7)\" by Zou et al.\n- The **metalens** challenge involves design of a 1D achromatic metalens and is based on the [RGB Metalens](https://github.com/NanoComp/photonics-opt-testbed/tree/main/RGB_metalens) problem from \"[Validation and characterization of algorithms and software for photonics inverse design](https://opg.optica.org/josab/abstract.cfm?uri=josab-41-2-A161)\" by Chen et al.\n- The **ceviche** challenges are jax-wrapped versions of the [Ceviche Challenges](https://github.com/google/ceviche-challenges) open-sourced by Google, with defaults matching \"[Inverse Design of Photonic Devices with Strict Foundry Fabrication Constraints](https://pubs.acs.org/doi/10.1021/acsphotonics.2c00313)\" by Schubert et al.\n- The **photon extractor** challenge is based on \"[Inverse-designed photon extractors for optically addressable defect qubits](https://opg.optica.org/optica/fulltext.cfm?uri=optica-7-12-1805)\" by Chakravarthi et al., and involves design of nanostructures to increase photon collection efficiency for quantum information processing applications.\n\n\n## Install\n```\npip install invrs_gym\n```\n\n## Citing the invrs-gym\nIf you use the gym for your research, please cite,\n\n```\n@misc{schubert2024invrsgymtoolkitnanophotonicinverse,\n title={invrs-gym: a toolkit for nanophotonic inverse design research},\n author={Martin F. Schubert},\n year={2024},\n eprint={2410.24132},\n archivePrefix={arXiv},\n primaryClass={physics.optics},\n url={https://arxiv.org/abs/2410.24132},\n}\n```\n\nPlease also cite the original paper in which the challenge used was introduced (click to expand).\n\n<details>\n<summary>Metagrating challenge</summary>\n\n```\n@article{chen2024validation,\n title={Validation and characterization of algorithms and software for photonics inverse design},\n author={Chen, Mo and Christiansen, Rasmus E and Fan, Jonathan A and I{\\c{s}}iklar, G{\\\"o}ktu{\\u{g}} and Jiang, Jiaqi and Johnson, Steven G and Ma, Wenchao and Miller, Owen D and Oskooi, Ardavan and Schubert, Martin F, and Wang, Fengwen and Williamson, Ian A D and Xue, Wenjin and Zou, You},\n journal={JOSA B},\n volume={41},\n number={2},\n pages={A161--A176},\n year={2024},\n publisher={Optica Publishing Group}\n}\n```\n\n</details>\n<details>\n<summary>Diffractive splitter challenge</summary>\n\n```\n@misc{LightTrans,\n author = {LightTrans},\n title = {Design and Rigorous Analysis of Non-Paraxial Diffractive Beam Splitter},\n howpublished = {\\url{https://www.lighttrans.com/use-cases/application/design-and-rigorous-analysis-of-non-paraxial-diffractive-beam-splitter.html}},\n note = {Version: 3.1},\n}\n```\n\n</details>\n<details>\n<summary>Meta-atom library challenge</summary>\n\n```\n@article{chen2023dispersion,\n title={Dispersion-engineered metasurfaces reaching broadband 90\\% relative diffraction efficiency},\n author={Chen, Wei Ting and Park, Joon-Suh and Marchioni, Justin and Millay, Sophia and Yousef, Kerolos MA and Capasso, Federico},\n journal={Nature Communications},\n volume={14},\n number={1},\n pages={2544},\n year={2023},\n publisher={Nature Publishing Group UK London}\n}\n```\n\n</details>\n<details>\n<summary>Bayer sorter challenge</summary>\n\n```\n@article{zou2022pixel,\n title={Pixel-level Bayer-type colour router based on metasurfaces},\n author={Zou, Xiujuan and Zhang, Youming and Lin, Ruoyu and Gong, Guangxing and Wang, Shuming and Zhu, Shining and Wang, Zhenlin},\n journal={Nature Communications},\n volume={13},\n number={1},\n pages={3288},\n year={2022},\n publisher={Nature Publishing Group UK London}\n}\n```\n\n</details>\n<details>\n<summary>Metalens challenge</summary>\n\n```\n@article{chen2024validation,\n title={Validation and characterization of algorithms and software for photonics inverse design},\n author={Chen, Mo and Christiansen, Rasmus E and Fan, Jonathan A and I{\\c{s}}iklar, G{\\\"o}ktu{\\u{g}} and Jiang, Jiaqi and Johnson, Steven G and Ma, Wenchao and Miller, Owen D and Oskooi, Ardavan and Schubert, Martin F, and Wang, Fengwen and Williamson, Ian A D and Xue, Wenjin and Zou, You},\n journal={JOSA B},\n volume={41},\n number={2},\n pages={A161--A176},\n year={2024},\n publisher={Optica Publishing Group}\n}\n```\n\n</details>\n<details>\n<summary>Ceviche challenges</summary>\n\n```\n@article{chen2024validation,\n title={Validation and characterization of algorithms and software for photonics inverse design},\n author={Chen, Mo and Christiansen, Rasmus E and Fan, Jonathan A and I{\\c{s}}iklar, G{\\\"o}ktu{\\u{g}} and Jiang, Jiaqi and Johnson, Steven G and Ma, Wenchao and Miller, Owen D and Oskooi, Ardavan and Schubert, Martin F, and Wang, Fengwen and Williamson, Ian A D and Xue, Wenjin and Zou, You},\n journal={JOSA B},\n volume={41},\n number={2},\n pages={A161--A176},\n year={2024},\n publisher={Optica Publishing Group}\n}\n@article{schubert2022inverse,\n title={Inverse design of photonic devices with strict foundry fabrication constraints},\n author={Schubert, Martin F and Cheung, Alfred KC and Williamson, Ian AD and Spyra, Aleksandra and Alexander, David H},\n journal={ACS Photonics},\n volume={9},\n number={7},\n pages={2327--2336},\n year={2022},\n publisher={ACS Publications}\n}\n```\n\n</details>\n\n<details>\n<summary>Photon extractor challenge</summary>\n\n```\n@article{chakravarthi2020inverse,\n title={Inverse-designed photon extractors for optically addressable defect qubits},\n author={Chakravarthi, Srivatsa and Chao, Pengning and Pederson, Christian and Molesky, Sean and Ivanov, Andrew and Hestroffer, Karine and Hatami, Fariba and Rodriguez, Alejandro W and Fu, Kai-Mei C},\n journal={Optica},\n volume={7},\n number={12},\n pages={1805--1811},\n year={2020},\n publisher={Optica Publishing Group}\n}\n```\n\n</details>\n\n## Testing\nSome tests are marked as slow and are skipped by default. To run these manually, use\n```\npytest --runslow\n```\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2023 The INVRS-IO authors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
"summary": "A collection of inverse design challenges",
"version": "1.4.4",
"project_urls": null,
"split_keywords": [
"topology",
" optimization",
" jax",
" inverse design"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "883aa9af622131824d03a400b84be244c291c61cf4680bc4dcddfae58a7ddb85",
"md5": "3aa28d5df034e97f3544948ef45ea013",
"sha256": "0a8dd2d1fb694ab7f523a4311d41c2949f0cc50fe7c66916281b5b421691f0ba"
},
"downloads": -1,
"filename": "invrs_gym-1.4.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3aa28d5df034e97f3544948ef45ea013",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 73566,
"upload_time": "2024-12-12T17:05:23",
"upload_time_iso_8601": "2024-12-12T17:05:23.016741Z",
"url": "https://files.pythonhosted.org/packages/88/3a/a9af622131824d03a400b84be244c291c61cf4680bc4dcddfae58a7ddb85/invrs_gym-1.4.4-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6adf1fc990b87bc19af534d758b7ede1ab0d14715e67f7d87466a03f200427e8",
"md5": "21584fd5466e220bb4eb16b610eb9557",
"sha256": "9c8239ed32872606d0a970c048732371d6ffd79d1027d4e5fecdaca8ecada862"
},
"downloads": -1,
"filename": "invrs_gym-1.4.4.tar.gz",
"has_sig": false,
"md5_digest": "21584fd5466e220bb4eb16b610eb9557",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 63554,
"upload_time": "2024-12-12T17:05:25",
"upload_time_iso_8601": "2024-12-12T17:05:25.337105Z",
"url": "https://files.pythonhosted.org/packages/6a/df/1fc990b87bc19af534d758b7ede1ab0d14715e67f7d87466a03f200427e8/invrs_gym-1.4.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-12 17:05:25",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "invrs-gym"
}