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

Uploaded Source

Built Distribution

feijoa-0.1.6-py3-none-any.whl (131.1 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for feijoa-0.1.6.tar.gz
Algorithm Hash digest
SHA256 9edf74f064a53b9c928a60f4ed98ef8eefdc19291ea1bc54363aeb4a6cd01776
MD5 7de2c65c9752347f922b5a1d0077507c
BLAKE2b-256 4699aeff30682f95300a61d3666ba0b94a24795e9158fb4525638ffac260aac9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: feijoa-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 131.1 kB
  • 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.6-py3-none-any.whl
Algorithm Hash digest
SHA256 17ab91bd473fb9d086d6fb50c105f11ab6a5fda49286f0bbc304798d2838f3cf
MD5 290f14ebe52df64d1a5ae975bfa2ac17
BLAKE2b-256 e9ab1b5d50d9cac5630e8d8f5afcca4f85ba003c2237346d80205559247e9e40

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