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.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)
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.4.1.tar.gz
(9.8 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.4.1-py3-none-any.whl
(10.5 kB
view details)
File details
Details for the file mutax-0.4.1.tar.gz.
File metadata
- Download URL: mutax-0.4.1.tar.gz
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9adf08a4d3016f8f6a1040c71e80f9cfb8fa29539536223c3f84bacc99640312
|
|
| MD5 |
2b5a64ec56b23f813bae58269cb4c29c
|
|
| BLAKE2b-256 |
c65a50c72c56b187ca67ff230054bc238781b9f870e3b7d22077d08c894fe8ee
|
File details
Details for the file mutax-0.4.1-py3-none-any.whl.
File metadata
- Download URL: mutax-0.4.1-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
226a16dd98bb6e32c24eb1b65eb3dc30d032dccb35d780d8212583c06a612eb6
|
|
| MD5 |
1a92abe2973947e9a6c9f9cc594dc76e
|
|
| BLAKE2b-256 |
9f100bb7339beedc3716d1176cb5a7b4f2fa0b79d681b1ce945d225f8ae8fe13
|