Summarise the results of a run of irace

irace_summarise(irace_results)

Arguments

irace_results

The data generated when loading the .Rdata file created by irace (or the filename of that file).

Value

list()

Author

Manuel López-Ibáñez

Examples

irace_results <- read_logfile(system.file(package="iraceplot", "exdata",
                                         "guide-example.Rdata", mustWork = TRUE))
irace_summarise(irace_results)
#> $version
#> [1] "3.5.36369bb-dirty"
#> 
#> $n_iterations
#> [1] 9
#> 
#> $n_configurations
#> [1] 809
#> 
#> $n_instances
#> [1] 21
#> 
#> $n_experiments
#> [1] 4995
#> 
#> $n_elites
#> [1] 5
#> 
#> $n_soft_restarts
#> [1] 0
#> 
#> $n_rejected
#> [1] 0
#> 
#> $time_cpu_user
#> [1] NA
#> 
#> $time_cpu_sys
#> [1] NA
#> 
#> $time_cpu_total
#> [1] NA
#> 
#> $time_wallclock
#> [1] NA
#> 
#> $termination_reason
#> $termination_reason$flag
#> [1] TRUE
#> 
#> $termination_reason$msg
#> [1] "Not enough budget to race more than the minimum configurations"
#> 
#>