Skip to main content

Neural Pipeline Search helps deep learning experts find the best neural pipeline.

Project description

Neural Pipeline Search (NePS)

PyPI version Python versions License Tests

NePS helps deep learning experts to optimize the hyperparameters and/or architecture of their deep learning pipeline with:

  • Hyperparameter Optimization (HPO) (example)
  • Neural Architecture Search (NAS) (example, paper)
  • Joint Architecture and Hyperparameter Search (JAHS) (example, paper)

For efficiency and convenience NePS allows you to

Or all of the above for maximum efficiency!

Note

As indicated with the v0.x.x version number, NePS is early stage code and APIs might change in the future.

Documentation

Please have a look at our documentation and examples.

Installation

Using pip

pip install neural-pipeline-search

Usage

Using neps always follows the same pattern:

  1. Define a run_pipeline function that evaluates architectures/hyperparameters for your problem
  2. Define a search space pipeline_space of architectures/hyperparameters
  3. Call neps.run to optimize run_pipeline over pipeline_space

In code, the usage pattern can look like this:

import neps
import logging


# 1. Define a function that accepts hyperparameters and computes the validation error
def run_pipeline(hyperparameter_a: float, hyperparameter_b: int):
    validation_error = -hyperparameter_a * hyperparameter_b
    return validation_error


# 2. Define a search space of hyperparameters; use the same names as in run_pipeline
pipeline_space = dict(
    hyperparameter_a=neps.FloatParameter(lower=0, upper=1),
    hyperparameter_b=neps.IntegerParameter(lower=1, upper=100),
)

# 3. Call neps.run to optimize run_pipeline over pipeline_space
logging.basicConfig(level=logging.INFO)
neps.run(
    run_pipeline=run_pipeline,
    pipeline_space=pipeline_space,
    root_directory="usage_example",
    max_evaluations_total=5,
)

For more details and features please have a look at our documentation and examples.

Analysing runs

See our documentation on analysing runs.

Alternatives

NePS does not cover your use-case? Have a look at some alternatives.

Contributing

Please see the documentation for contributors.

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

neural_pipeline_search-0.10.0.tar.gz (219.2 kB view hashes)

Uploaded Source

Built Distribution

neural_pipeline_search-0.10.0-py3-none-any.whl (287.0 kB view hashes)

Uploaded Python 3

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