Benchmark repository for optimization¶
BenchOpt is a package to simplify, make more transparent and more reproducible the comparisons of optimization algorithms.
BenchOpt is written in Python but it is available with many programming languages. So far it has been tested with Python, R, Julia and compiled binaries written in C/C++ available via a terminal command. If it can be installed via conda it should just work!
BenchOpt is used through a command line as documented in Command Line Interface (CLI) Documentation. Ultimately running and replicating an optimization benchmark should be as simple as doing:
$ git clone https://github.com/benchopt/benchmark_logreg_l2
$ benchopt run --env ./benchmark_logreg_l2
Running these commands will fetch the benchmark files and give you a benchmark plot on l2-regularized logistic regression:
Learn how to Write a benchmark.
Install¶
This package can be installed through pip using:
$ pip install benchopt
This will install the command line tool to run the benchmark. Then, existing benchmarks can be retrieved from git or created locally. To discover which benchmarks are presently available look for benchmark_* repositories on GitHub, such as for l1-regularized logistic regression. This benchmark can then be retrieved locally with:
$ git clone https://github.com/benchopt/benchmark_lasso.git
Command line usage¶
To run Lasso benchmarks on all datasets and with all solvers, run:
$ benchopt run --env benchmark_lasso
Use
$ benchopt run -h
for more details about different options read the Python API Documentation.
Benchmarks available¶
Notation: In what follows, n (or n_samples) stands for the number of samples and p (or n_features) stands for the number of features.
ols: ordinary least-squares. This consists in solving the following program:
nnls: non-negative least-squares. This consists in solving the following program:
lasso: l1-regularized least-squares. This consists in solving the following program:
logreg_l2: l2-regularized logistic regression. This consists in solving the following program:
logreg_l1: l1-regularized logistic regression. This consists in solving the following program:
Benchmark results¶
All the public benchmark results are available at BenchOpt Benchmarks results.
Publish results: You can directly publish the result of a run of benchopt
on BenchOpt Benchmarks results. You can have a look at this page to Publish benchmark results.