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
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 feijoa-0.1.11.tar.gz.
File metadata
- Download URL: feijoa-0.1.11.tar.gz
- Upload date:
- Size: 43.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
854b209f0a558696b51750e50aeb259163460385195a69fb3c827e2012b26f77
|
|
| MD5 |
a88d3fc261804603bbfc52b838335710
|
|
| BLAKE2b-256 |
9444b50fe5c9550eabcebb86dd639f3204d00ac4caea8b8b07321673c1140614
|
File details
Details for the file feijoa-0.1.11-py3-none-any.whl.
File metadata
- Download URL: feijoa-0.1.11-py3-none-any.whl
- Upload date:
- Size: 92.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e932b1a5077fc9f7d3e5ad1ec5a1c8323141538239b2ba059c3353521ce44ab9
|
|
| MD5 |
66dd59085957c33ca8a1acef8b214a5b
|
|
| BLAKE2b-256 |
ce4123902da2dc04d4eac2c373c9e705c56ebb93531286aa93e9d68aa8ca66a1
|