knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
library(iraceplot)
The provided execution of irace statistics are:
r {length(iraceResults$allElites)}
r {nrow(iraceResults$allConfigurations)}
r {nrow(iraceResults$experiments)}
r {nrow(iraceResults$experimentLog)}
r {length(iraceResults$allElites[[length(iraceResults$allElites)]])}
The final best configurations found by irace are:
knitr::kable(iraceResults$allConfigurations[iraceResults$allElites[[length(iraceResults$allElites)]],])
The parallel_coord
function creates a parallel coordinate plot of a set of selected configurations.
parallel_coord(iraceResults)
The frequency of the parameter values sampled by irace may indicate high performing areas:
sampling_frequency(iraceResults)
The test performance allows to evaluate if the configurations found by irace.
The final elite configuration performance on the test set:
if (iraceResults$scenario$testInstances == "" || is.null(iraceResults$scenario$testInstances)) { cat("No test performed.\n") } else { boxplot_test(iraceResults, type = "best") }
Iteration elite configuration performance on the test set:
if (iraceResults$scenario$testIterationElites) { boxplot_test(iraceResults, type = "all") } else{ cat("No iteration test performed.\n") }
Final elite configurations performance on the training set.
boxplot_training(iraceResults)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.