Hyperparameter's optimization framework
Project description
Feijoa is a Python framework for hyperparameter's optimization.
The Feijoa API is very easy to use, effective for optimizing machine learning algorithms and various software. Feijoa contains many different use cases.
Compatibility
Feijoa works with Linux and OS X. Requires Python 3.8 or later.
Feijoa works with Jupyter notebooks with no additional configuration required.
Installing
Install with pip
or your favourite PyPI package manager.
python -m pip install feijoa
Code example:
from feijoa import create_job, SearchSpace, Real
from math import sin
def objective(experiment):
x = experiment.params.get('x')
y = experiment.params.get('y')
return sin(x * y)
space = SearchSpace()
space.insert(Real('x', low=0.0, high=2.0))
space.insert(Real('y', low=0.0, high=2.0))
job = create_job(search_space=space)
job.do(objective)
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
feijoa-0.1.2.tar.gz
(1.8 MB
view details)
Built Distribution
File details
Details for the file feijoa-0.1.2.tar.gz
.
File metadata
- Download URL: feijoa-0.1.2.tar.gz
- Upload date:
- Size: 1.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 377b6ef9d51d32a8c6a6cfe4ccdae1122d7cb19653a32ab0ef387e21385f67e5 |
|
MD5 | f194cca405041b59be5c70885b40213c |
|
BLAKE2b-256 | 5b65632ce6ffa029afcb447d0e398dd37129368e297bb737119cb99d80578757 |
File details
Details for the file feijoa-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: feijoa-0.1.2-py3-none-any.whl
- Upload date:
- Size: 1.9 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2903ec6b72cb4324ac9f73283554318c4bb80bb177111017f8d3481a722d45f8 |
|
MD5 | f7d7e14a6d9dbc5754dbd2f37a1fccd4 |
|
BLAKE2b-256 | f65dfc4829754df88c6223e3f6c1763b181e49a6d631781971931f8e835a02aa |