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] "3.9.0.9000.08fb612d"
#>
#> $n_iterations
#> [1] 8
#>
#> $n_configurations
#> [1] 155
#>
#> $n_initial_configurations
#> [1] 0
#>
#> $n_instances
#> [1] 17
#>
#> $n_experiments
#> [1] 1000
#>
#> $n_elites
#> [1] 2
#>
#> $n_soft_restarts
#> [1] 0
#>
#> $n_rejected
#> [1] 0
#>
#> $time_targetrunner
#> [1] 0
#>
#> $time_cpu_user
#> [1] 5075.465
#>
#> $time_cpu_sys
#> [1] 47.431
#>
#> $time_cpu_total
#> [1] 5122.896
#>
#> $time_wallclock
#> [1] 2676.009
#>
#> $termination_reason
#> [1] "Not enough budget to race more than the minimum configurations"
#>