Skip to main content

Hyperparameter's optimization framework

Project description

PyPI - Python Version PyPI Codecov

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


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.11.tar.gz (43.4 kB view details)

Uploaded Source

Built Distribution

feijoa-0.1.11-py3-none-any.whl (92.6 kB view details)

Uploaded Python 3

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

Hashes for feijoa-0.1.11.tar.gz
Algorithm Hash digest
SHA256 854b209f0a558696b51750e50aeb259163460385195a69fb3c827e2012b26f77
MD5 a88d3fc261804603bbfc52b838335710
BLAKE2b-256 9444b50fe5c9550eabcebb86dd639f3204d00ac4caea8b8b07321673c1140614

See more details on using hashes here.

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

Hashes for feijoa-0.1.11-py3-none-any.whl
Algorithm Hash digest
SHA256 e932b1a5077fc9f7d3e5ad1ec5a1c8323141538239b2ba059c3353521ce44ab9
MD5 66dd59085957c33ca8a1acef8b214a5b
BLAKE2b-256 ce4123902da2dc04d4eac2c373c9e705c56ebb93531286aa93e9d68aa8ca66a1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page