herilalaina / neps

Neural Pipeline Search (NePS): Helps deep learning experts find the best neural pipeline.

Home Page:https://automl.github.io/neps/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Neural Pipeline Search (NePS): Helps deep learning experts find the best neural pipeline.

https://automl.github.io/neps/

License:MIT License


Languages

Language:Python 100.0%