A Python package for hill climbing optimization of user-supplied objective functions with simulated annealing and replica exchange. Designed for flexible multi-objective optimization with support for multi-column datasets.
- Flexible objectives: Support for user supplied objective functions with custom metrics
- Real-time monitoring dashboard: Live progress plots and run info. with SQLite backend
- Replica exchange (parallel tempering): Replicas at different temperatures exchange configurations for improved global optimization (
multiprocessing.Pool) - Simulated annealing: Temperature-based acceptance of suboptimal solutions to escape local minima
- Checkpoint/resume: Save and resume long-running optimizations with configurable checkpoint intervals
- JIT compilation: Numba-optimized core functions for performance
Install the package directly from PyPI to use it in your own projects:
pip install parallel-hill-climberFor detailed usage, configuration options, and advanced features, see the full documentation.
Simple hill climb to maximize the Pearson correlation coefficient between two random uniform features:
import numpy as np
import pandas as pd
from hill_climber import HillClimber
# Create sample data
data = pd.DataFrame({
'x': np.random.rand(100),
'y': np.random.rand(100)
})
# Define objective function
def my_objective(x, y):
correlation = pd.Series(x).corr(pd.Series(y))
metrics = {'correlation': correlation}
return metrics, correlation
# Create hill climber instance
climber = HillClimber(
data=data,
objective_func=my_objective,
max_time=1,
mode='maximize',
n_replicas=4
)
# Run optimization
best_data = climber.climb()The return best_data contains the winning solution from all replicates at the end of the run. Individual replicate results can be accessed with the climber object's .get_replicas() method after the run is complete.
You can monitor in-progress optimizations with the built-in Streamlit dashboard. To use the dashboard, install hill climber with the dashboard extras and then launch the dashboard:
$ pip install parallel-hill-climber[dashboard]
$ hill-climber-dashboard
You can now view your Streamlit app in your browser.
Local URL: http://localhost:8501
Network URL: http://172.17.0.2:8501
Access the dashboard via the URL provided. Note: the dashboard is only available on the same machine (or same LAN) running hill climber.
To explore the examples, modify the code, or contribute:
- Fork this repository
- Open in GitHub Codespaces
- The development environment will be configured automatically
- Documentation will be built and served at http://localhost:8000 automatically
- The monitoring dashboard will start at http://localhost:8501 automatically
-
Clone or fork the repository:
git clone https://github.com/gperdrizet/hill_climber.git cd hill_climber -
Create and activate a virtual environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install dependencies:
pip install -r requirements.txt
You can build and view a local copy of the documentation as follows:
cd docs
make htmlView docs by opening docs/build/html/index.html in a browser, or serve locally with: python -m http.server 8000 --directory build/html
To run the test suite:
# Run all tests
python tests/run_tests.py
# Or with pytest if installed
python -m pytest tests/
# Run specific test file
python -m pytest tests/test_hill_climber.pyContributions welcome! Please ensure all tests pass before submitting pull requests.
This project is licensed under the GNU General Public License v3.0 (GPL-3.0). See the LICENSE file for full details.
In summary, you are free to use, modify, and distribute this software, but any derivative works must also be released under the GPL-3.0 license.
And please cite!
If you use this package in your research, please use the "Cite this repository" button at the top of the GitHub repository page to get properly formatted citations in APA, BibTeX, or other formats.
