Summarise the results of a run of irace
Arguments
- iraceResults
list()
|character(1)
Object created by irace and typically saved in the log fileirace.Rdata
. If a character string is given, then it is interpreted as the path to the log file from which theiraceResults
object will be loaded.
Examples
irace_results <- read_logfile(system.file("exdata/irace-acotsp.Rdata",
package="irace", mustWork=TRUE))
irace_summarise(irace_results)
#> $version
#> [1] "4.1.38b59f7"
#>
#> $n_iterations
#> [1] 8
#>
#> $n_configurations
#> [1] 167
#>
#> $n_initial_configurations
#> [1] 0
#>
#> $n_instances
#> [1] 15
#>
#> $n_experiments
#> [1] 1000
#>
#> $n_elites
#> [1] 3
#>
#> $n_soft_restarts
#> [1] 0
#>
#> $n_rejected
#> [1] 0
#>
#> $time_targetrunner
#> [1] 0
#>
#> $time_cpu_user
#> [1] 5430.848
#>
#> $time_cpu_sys
#> [1] 81.992
#>
#> $time_cpu_total
#> [1] 5512.84
#>
#> $time_wallclock
#> [1] 2848.956
#>
#> $termination_reason
#> [1] "Not enough budget to race more than the minimum configurations"
#>