Skip to contents

Summarise the results of a run of irace

Usage

irace_summarise(iraceResults)

Arguments

iraceResults

(list()|character(1))
Object created by irace and typically saved in the log file irace.Rdata. If a character string is given, then it is interpreted as the path to the log file from which the iraceResults object will be loaded.

Value

list()

Author

Manuel López-Ibáñez

Examples

irace_results <- read_logfile(system.file("exdata/irace-acotsp.Rdata",
                                          package="irace", mustWork=TRUE))
irace_summarise(irace_results)
#> $version
#> [1] "3.5.1.9000.0d7b9f8-dirty"
#> 
#> $n_iterations
#> [1] 7
#> 
#> $n_configurations
#> [1] 148
#> 
#> $n_initial_configurations
#> [1] 0
#> 
#> $n_instances
#> [1] 17
#> 
#> $n_experiments
#> [1] 988
#> 
#> $n_elites
#> [1] 5
#> 
#> $n_soft_restarts
#> [1] 0
#> 
#> $n_rejected
#> [1] 0
#> 
#> $time_targetrunner
#> [1] 0
#> 
#> $time_cpu_user
#> [1] 9941.768
#> 
#> $time_cpu_sys
#> [1] 63.197
#> 
#> $time_cpu_total
#> [1] 10004.97
#> 
#> $time_wallclock
#> [1] 5245.747
#> 
#> $termination_reason
#> [1] "Not enough budget to race more than the minimum configurations"
#>