# hyper_parameter_optimization **Repository Path**: mirrors_openvinotoolkit/hyper_parameter_optimization ## Basic Information - **Project Name**: hyper_parameter_optimization - **Description**: Python library of automatic hyper-parameter optimization - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: develop - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-15 - **Last Updated**: 2026-07-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # [HpOpt] Hyper-parameter Optimization Python library of automatic hyper-parameter optimization ## Design principles - Easy to use configuration - Support for automatic configuration - Distributed execution on multi-node - Communication via persistent storage - Support for pause/resume - Decide to go or stop in the report method - Making a decision without a central controller - General-purpose design - Support for sequential/parallel execution ## Quick Start - Installation ```bash $ pip install -r requirements.txt $ pip install -v -e . ``` - Sample codes - List of sample codes - Sequential Execution - [toy_test.py](./samples/toy_test.py) - [pytorch_test.py](./samples/pytorch_test.py) - Parallel Execution - [toy_test_parallel.py](./samples/toy_test_parallel.py) - [pytorch_parallel_test.py](./samples/pytorch_parallel_test.py) - How to run sample codes - Basic code to find an optimal point of [skopt.benchmarks.branin](https://scikit-optimize.github.io/stable/modules/generated/skopt.benchmarks.branin.html) ```bash $ cd samples $ pip install -r requirements.txt $ python toy_test.py ```