Evolutionary optimization algorithms in JAX
Project description
Mutax
SciPy-like differential evolution for JAX
Fully jax.jitted optimization of any JAX-compatible function. Serial and parallel execution on CPU, GPU, and TPU.
Installation
pip install mutax
Quick start
import jax
import jax.numpy as jnp
from mutax import differential_evolution
def cost_function(x):
return jnp.sum(x**2)
bounds = [(-5, 5)] * 10 # 10-dimensional problem with bounds for each dimension
result = differential_evolution(cost_function, bounds, key=jax.random.key(0))
print("Best solution:", result.x)
print("Objective value:", result.fun)
Documentation
The documentation is available at Read the Docs.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mutax-0.3.0.tar.gz
(9.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
mutax-0.3.0-py3-none-any.whl
(10.3 kB
view details)
File details
Details for the file mutax-0.3.0.tar.gz.
File metadata
- Download URL: mutax-0.3.0.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1157202acd0338ba0773e7a715f47c0ca7ce15de9ddb2e98047af7631d5043c3
|
|
| MD5 |
7ac1ba477ab2d08992c689e60def3560
|
|
| BLAKE2b-256 |
915e8534db555a89c540f362bc9fe979b54aeca329cc3c350e3222e54cfa6d04
|
File details
Details for the file mutax-0.3.0-py3-none-any.whl.
File metadata
- Download URL: mutax-0.3.0-py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5db536e0abd78e9a233dcb5a6da32ba698c16f6820e71265866f5da7d6141076
|
|
| MD5 |
739e4be5ff89a6cc2b85c7b9032332c5
|
|
| BLAKE2b-256 |
6dad42584b576d6b3e521d2e4312effaf57c363c8306c2fd556521dc5638fb1e
|