HyperNOMAD is a C++ and Python package dedicated to the hyperparameter optimization of deep neural networks. The package contains a blackbox specifically designed for this problematic and provides a link with the NOMAD software used for the optimization. The blackbox takes as inputs a list of hyperparameters, builds a corresponding deep neural network in order to train, validate and test it on a specific data set before returning the test error as a mesure of performance. NOMAD is then used to minimize this error. The following appendix provides an overview of how to use the HyperNOMAD package.
The following tutorial shows the different steps to take in order to run HyperNOMAD on a first example. The complete functionalities of HyperNOMAD are described in the documentation.
In order to run HyperNOMAD correctly, please make sure to have:
First build the executable by running the following command.
make
building HyperNOMAD ...
To be able to run the example
the HYPERNOMAD_HOME environment variable
must be set to the HyperNOMAD home directory
When the compilation is successful, a message appears asking to set an environment variable 'HYPERNOMAD_HOME'. This can be done by adding a line in the file .profile or .bashrc :
export HYPERNOMAD_HOME=hypernomad_directory
The executable hypernomad.exe is located in the bin directory. You can check that the installation is successful by trying to run the commad
$HYPERNOMAD_HOME/bin/./hypernomad.exe -i
which should return the following informations:
--------------------------------------------------
HyperNomad - version 1.0
--------------------------------------------------
Using Nomad version 3.9.0 - www.gerad.ca/nomad
--------------------------------------------------
Run : hypernomad.exe parameters_file
Info : hypernomad.exe -i
Help : hypernomad.exe -h
Version : hypernomad.exe -v
Usage : hypernomad.exe -u
Neighboors : hypernomad.exe -n parameters_file
The next phase is to create a parameter file that contains the necessary informations to specify the classification problem, the search space and the initial starting point. HyperNOMAD allows for a good flexibility of tuning a convolutional network by considering multiple aspects of a network at once such as the architecture, the dropout rate, the choice of the optimizer and the hyperparameters related to the optimization aspect (learning rate, weight decay, momentum, ...), the batch size, etc. The user can choose to optimize all these aspects or select a few and fixe the others to certain values. The user can also change the default range of each hyperparameter.
This information is passed through the parameter file by using a specific synthax:
KEYWORD INITIAL_VALUE LOWER_BOUND UPPER_BOUND FIXED/VAR
Here is an example of an acceptable parameter file. First, the dataset MNIST is choosen and we specify that HyperNOMAD is allowed to try a maximum of 100 configurations. Then, the number of convolutional layers is fixed throught the optimization to 5, the two '-' appearing after the '5' mean that the default lower and upper bounds are not changed. The kernels, number of fully connected layers and activation function are respectively initialized at 3, 6, and 2 (Sigmoid) and the dropout rate is initialized at 0.6 with a new lower bound of 0.3 and upper bound of 0.8
Finally, all the remaining hyperparameters that are not explicitly mentioned in this file are fixed to their default values during the optimization.
DATASET MNIST
MAX_BB_EVAL 100
# Optional information
NUM_CON_LAYERS 5 - - FIXED # The initial value is fixed
# lower and upper bounds have no
# influence when parameter
# is fixed.
KERNELS 3 # Only the initial value is set (not fixed)
# the lower bound and upper bound
# have default values.
NUM_FC_LAYERS 6
ACTIVATION_FUNCTION 2
DROPOUT_RATE 0.6 0.3 0.8 # The lower and upper bounds
# are set to values that are not
# the default ones
REMAINING_HPS FIXED
More details are provided in the user guide section of the documentation.
The optimization starts by executing the command:
$HYPERNOMAD_HOME/bin/./hypernomad.exe parameter_file.txt
Multiple examples of parameter files are provided in the folder examples. One uses CIFAR-10 starting from the default starting point and the other use MNIST with different configurations.
To use these files, the cammand is:
$HYPERNOMAD_HOME/bin/./hypernomad.exe $HYPERNOMAD_HOME/examples/cifar10_default.txt
or
$HYPERNOMAD_HOME/bin/./hypernomad.exe $HYPERNOMAD_HOME/examples/mnist_fc_optim.txt
If you use HyperNOMAD, please cite the following paper.
@article{lakhmiri2021hypernomad,
title={HyperNOMAD: Hyperparameter Optimization of Deep Neural Networks Using Mesh Adaptive Direct Search},
author={Lakhmiri, Dounia and Digabel, S{\'e}bastien Le and Tribes, Christophe},
journal={ACM Transactions on Mathematical Software (TOMS)},
volume={47},
number={3},
pages={1--27},
year={2021},
publisher={ACM New York, NY, USA}
}