Skip to content

Latest commit

 

History

History
67 lines (50 loc) · 2.04 KB

index.rst

File metadata and controls

67 lines (50 loc) · 2.04 KB

SMAC3 documentation!

SMAC is a tool for algorithm configuration. It optimizes parameters of arbitrary algorithms across a set of instances. This includes, but is not limited to, optimization of hard combinatorial problem solvers and hyperparameter optimization of various machine learning algorithms. The main core consists of Bayesian Optimization in combination with a simple racing mechanism on the instances to efficiently decide which of two configuration performs better.

Contents:

.. toctree::
   :titlesonly:
   :maxdepth: 1

   installation
   quickstart
   manual
   api
   faq
   contact
   license


Note

For a detailed description of its main idea, we refer to:

Hutter, F. and Hoos, H. H. and Leyton-Brown, K. Sequential Model-Based Optimization for General Algorithm Configuration In: Proceedings of the conference on Learning and Intelligent OptimizatioN (LION 5)

The SMAC3 package is not meant to be a reference implementation for SMAC according the above cited LION paper. Please use SMAC v2 (Java) for comparisons against SMAC.

Note

If you used SMAC in one of your research projects, please cite us:

@misc{smac-2017,
title={SMAC v3: Algorithm Configuration in Python},
author={Marius Lindauer and Katharina Eggensperger and Matthias Feurer and Stefan Falkner and André Biedenkapp and Frank Hutter},
year={2017},
publisher={GitHub},
howpublished={\url{https://github.com/automl/SMAC3}}
}

SMAC3 is mainly written in Python 3 and continuously tested with Python 3.5-3.6. Its Random Forest is written in C++11.