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.5.tar.gz (1.8 MB view details)

Uploaded Source

Built Distribution

feijoa-0.1.5-py3-none-any.whl (1.8 MB view details)

Uploaded Python 3

File details

Details for the file feijoa-0.1.5.tar.gz.

File metadata

  • Download URL: feijoa-0.1.5.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.7

File hashes

Hashes for feijoa-0.1.5.tar.gz
Algorithm Hash digest
SHA256 257592ab9d759a344e043c09bdf48c760bf5df28d0f9e2af723897a6f3b5b747
MD5 a9c73d2e3d2aca1a60c8a0f51cd256bb
BLAKE2b-256 03d3b60098078329f96d092fa97862da188a03da208b08ca67e3be8864b8257f

See more details on using hashes here.

File details

Details for the file feijoa-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: feijoa-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.7

File hashes

Hashes for feijoa-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 9f6588ed2671c8676e99fde4eeaccba156e03e77913536b2944809b584985360
MD5 da76aa44172bef9ec0566805016d4933
BLAKE2b-256 01e7ac1efb345107d257a64c774aa1b305d173fa8c7e3115809d855536eda8cd

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