Maintainers: Leslie Pérez Cáceres, Manuel López-Ibáñez
Creators: Pablo Oñate Marín, Leslie Pérez Cáceres, Manuel López-Ibáñez
Contact: https://groups.google.com/d/forum/irace-package
The iraceplot package provides a set of functions that create different plots to visualize the data generated by the irace configurator (https://cran.r-project.org/package=irace).
This package provides visualizations of:
Also, the package allows creating a small HTML report summarizing relevant information obtained during the execution of irace.
The aim of this package it to provide support for the analysis of the best parameter settings found, the assessment of the parameter space explored by irace and, the overall performance of the configuration process. Such analyses might lead to insights about the role of algorithmic components their interactions, or to improve the configuration process itself.
Keywords: automatic configuration, offline tuning, parameter tuning, parameter visualization, irace.
A user guide comes with the package. The following is a quick-start guide. The user guide gives more detailed instructions.
The official instructions are available at https://cran.r-project.org/doc/manuals/r-release/R-admin.html. We give below a quick R installation guide that will work in most cases.
You should install R from your package manager. On a Debian/Ubuntu system it will be something like:
$ sudo apt-get install r-base
Once R is installed, you can launch R from the Terminal and from the R prompt install the iraceplot package. See instructions below.
You can install R directly from a CRAN mirror (https://cran.r-project.org/bin/macosx/).
Alternatively, if you use homebrew, you can just brew the R formula from the science tap (unfortunately it does not come already bottled so you need to have Xcode installed to compile it):
$ brew tap homebrew/science
$ brew install r
Once R is installed, you can launch R from the Terminal (or from your Applications), and from the R prompt install the iraceplot package. See instructions below.
You can install R from a CRAN mirror (https://cran.r-project.org/bin/windows/). Once R is installed, you can launch the R console and install the iraceplot package from it. See instructions below.
install.packages("devtools")
Currently, the iraceplot package can be installed from Gtihub:
::install_github("auto-optimization/iraceplot") devtools
$ R CMD INSTALL <package>
where <package>
is one of the three versions
available: .tar.gz
(Unix/BSD/GNU/Linux), .tgz
(MacOS X), or .zip
(Windows).
Load the package in the R console:
library(iraceplot)
Load the log file generated by irace (.Rdata
) for
example, replace the path to your irace.Rdata
file in the
following line:
<- read_logfile("~/path/example/irace.Rdata") iraceResults
For example you can plot the training performance with:
boxplot_training(iraceResults)
Check the documentation and the User Guide to find the plot most suited to your needs or generate a general-purpose report with:
report(iraceResults, "path/to/my_report")