Optimization toolkit for high-dimensional, non-differentiable problems.
Project description
hdim-opt: High-Dimensional Optimization Toolkit
A modern optimization package to accelerate convergence in complex, high-dimensional problems. Includes the QUASAR evolutionary algorithm and HDS exploitative QMC sampler.
All core functions, listed below, are single-line executable and require three essential parameters: [obj_function, bounds, n_samples].
- quasar: QUASAR optimization for high-dimensional, non-differentiable problems.
- hds: Generate an exploitative HDS sequence, to distribute samples in focused regions.
- sobol: Generate a uniform Sobol sequence (via SciPy).
- sensitivity: Perform Sobol sensitivity analysis to measure each variable's importance on objective function results (via SALib).
Installation
Installed via hdim_opt directly from PyPI:
pip install hdim_opt
Example Usage:
import hdim_opt as h
# Parameter Space
n_dimensions = 100
bounds = [(-100,100)] * n_dimensions
n_samples = 1000
obj_func = h.test_functions.rastrigin
solution, fitness = h.quasar(obj_func, bounds)
sens_matrix = h.sensitivity(obj_func, bounds)
hds_samples = h.hds(n_samples, bounds)
sobol_samples = h.sobol(n_samples, bounds)
QUASAR Optimizer
QUASAR (Quasi-Adaptive Search with Asymptotic Reinitialization) is a quantum-inspired evolutionary algorithm, highly efficient for minimizing high-dimensional, non-differentiable, and non-parametric objective functions.
- Benefit: Significant improvements in convergence speed and solution quality compared to contemporary optimizers. (Reference: [https://arxiv.org/abs/2511.13843]).
HDS Sampler (Hyperellipsoid Density Sampling)
HDS is a non-uniform Quasi-Monte Carlo sampling method, specifically designed to exploit promising regions of the search space.
- Benefit: Provides control over the sample distribution. Results in higher average optimization solution quality when used for population initialization compared to uniform QMC methods. (Reference: [https://arxiv.org/abs/2511.07836]).
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
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
File details
Details for the file hdim_opt-1.1.3.tar.gz.
File metadata
- Download URL: hdim_opt-1.1.3.tar.gz
- Upload date:
- Size: 23.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be616b20c6e20742db4133e2193f710969f2437f214b5c96745d68e876a804fc
|
|
| MD5 |
04c073f199695c1e6894c4fba8ef47fd
|
|
| BLAKE2b-256 |
f0a1c83460edf58cab5f040a55faadccafc3bafe8a47c23c252744596d7936b3
|
File details
Details for the file hdim_opt-1.1.3-py3-none-any.whl.
File metadata
- Download URL: hdim_opt-1.1.3-py3-none-any.whl
- Upload date:
- Size: 24.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45f8ec9a7c84068ea995e81e41023109198ac99c0a649126f71a08e37851ae29
|
|
| MD5 |
997cf856ea51bc5c803ebd6ecae811ab
|
|
| BLAKE2b-256 |
9459261b53eef7137bdaf3e18a3975ece29db72812f6fb5c5c51d9d74f71e3db
|