Return scenario with default values.
defaultScenario(scenario = list())A list where tagged elements correspond to scenario settings of irace.
A list indexed by the irace parameter names, containing the default values for each parameter, except for those already present in the scenario passed as argument. The scenario list contains the following elements:
General options:
scenarioFilePath of the file that describes the configuration scenario setup and other irace settings. (Default: "./scenario.txt")
execDirDirectory where the programs will be run. (Default: "./")
logFileFile to save tuning results as an R dataset, either absolute path or relative to execDir. (Default: "./irace.Rdata")
debugLevelDebug level of the output of irace. Set this to 0 to silence all debug messages. Higher values provide more verbose debug messages. (Default: 0)
seedSeed of the random number generator (by default, generate a random seed). (Default: NA)
repairConfigurationUser-defined R function that takes a configuration generated by irace and repairs it. (Default: "")
postselectionPercentage of the configuration budget used to perform a postselection race of the best configurations of each iteration after the execution of irace. (Default: 0)
Elitist irace:
elitistEnable/disable elitist irace. (Default: 1)
elitistNewInstancesNumber of instances added to the execution list before previous instances in elitist irace. (Default: 1)
elitistLimitIn elitist irace, maximum number per race of elimination tests that do not eliminate a configuration. Use 0 for no limit. (Default: 2)
Internal irace options:
nbIterationsNumber of iterations. (Default: 0)
nbExperimentsPerIterationNumber of runs of the target algorithm per iteration. (Default: 0)
sampleInstancesRandomly sample the training instances or use them in the order given. (Default: 1)
minNbSurvivalMinimum number of configurations needed to continue the execution of each race (iteration). (Default: 0)
nbConfigurationsNumber of configurations to be sampled and evaluated at each iteration. (Default: 0)
muParameter used to define the number of configurations sampled and evaluated at each iteration. (Default: 5)
softRestartEnable/disable the soft restart strategy that avoids premature convergence of the probabilistic model. (Default: 1)
softRestartThresholdSoft restart threshold value for numerical parameters. If NA, NULL or "", it is computed as 10^-digits. (Default: "")
Target algorithm parameters:
parameterFileFile that contains the description of the parameters of the target algorithm. (Default: "./parameters.txt")
forbiddenExpsVector of R logical expressions that cannot evaluate to TRUE for any evaluated configuration. (Default: "")
forbiddenFileFile that contains a list of logical expressions that cannot be TRUE for any evaluated configuration. If empty or NULL, do not use forbidden expressions. (Default: "")
digitsMaximum number of decimal places that are significant for numerical (real) parameters. (Default: 4)
Target algorithm execution:
targetRunnerScript called for each configuration that executes the target algorithm to be tuned. See templates. (Default: "./target-runner")
targetRunnerRetriesNumber of times to retry a call to targetRunner if the call failed. (Default: 0)
targetRunnerDataOptional data passed to targetRunner. This is ignored by the default targetRunner function, but it may be used by custom targetRunner functions to pass persistent data around. (Default: "")
targetRunnerParallelOptional R function to provide custom parallelization of targetRunner. (Default: "")
targetEvaluatorOptional script or R function that provides a numeric value for each configuration. See templates/target-evaluator.tmpl (Default: "")
deterministicIf the target algorithm is deterministic, configurations will be evaluated only once per instance. (Default: 0)
parallelNumber of calls to targetRunner to execute in parallel. Values 0 or 1 mean no parallelization. (Default: 0)
loadBalancingEnable/disable load-balancing when executing experiments in parallel. Load-balancing makes better use of computing resources, but increases communication overhead. If this overhead is large, disabling load-balancing may be faster. (Default: 1)
mpiEnable/disable MPI. Use Rmpi to execute targetRunner in parallel (parameter parallel is the number of slaves). (Default: 0)
batchmodeSpecify how irace waits for jobs to finish when targetRunner submits jobs to a batch cluster: sge, pbs, torque or slurm. targetRunner must submit jobs to the cluster using, for example, qsub. (Default: 0)
Initial configurations:
configurationsFileFile that contains a set of initial configurations. If empty or NULL, all initial configurations are randomly generated. (Default: "")
Training instances:
instancesCharacter vector of the instances to be used in the targetRunner. (Default: "")
trainInstancesDirDirectory where training instances are located; either absolute path or relative to current directory. If no trainInstancesFiles is provided, all the files in trainInstancesDir will be listed as instances. (Default: "./Instances")
trainInstancesFileFile that contains a list of training instances and optionally additional parameters for them. If trainInstancesDir is provided, irace will search for the files in this folder. (Default: "")
Tuning budget:
maxExperimentsMaximum number of runs (invocations of targetRunner) that will be performed. It determines the maximum budget of experiments for the tuning. (Default: 0)
maxTimeMaximum total execution time in seconds for the executions of targetRunner. targetRunner must return two values: cost and time. (Default: 0)
budgetEstimationFraction (smaller than 1) of the budget used to estimate the mean computation time of a configuration. Only used when maxTime > 0 (Default: 0.02)
Statistical test:
testTypeStatistical test used for elimination. Default test is always F-test unless capping is enabled, in which case the default test is t-test. Valid values are: F-test (Friedman test), t-test (pairwise t-tests with no correction), t-test-bonferroni (t-test with Bonferroni's correction for multiple comparisons), t-test-holm (t-test with Holm's correction for multiple comparisons). (Default: "F-test")
firstTestNumber of instances evaluated before the first elimination test. It must be a multiple of eachTest. (Default: 5)
eachTestNumber of instances evaluated between elimination tests. (Default: 1)
confidenceConfidence level for the elimination test. (Default: 0.95)
Adaptive capping:
cappingEnable the use of adaptive capping, a technique designed for minimizing the computation time of configurations. This is only available when elitist is active. (Default: 0)
cappingTypeMeasure used to obtain the execution bound from the performance of the elite configurations.
mean: Mean performance of the elite configurations.
best: Best performance of the elite configurations.
worst: Worst performance of the elite configurations.
"median")boundTypeMethod to calculate the mean performance of elite configurations.
instance: Execution time of the current instance.
"candidate")boundMaxMaximum execution bound for targetRunner. It must be specified when capping is enabled. (Default: 0)
boundDigitsPrecision used for calculating the execution time. It must be specified when capping is enabled. (Default: 0)
boundParPenalization constant for timed out executions (executions that reach boundMax execution time). (Default: 1)
boundAsTimeoutReplace the configuration cost of bounded executions with boundMax. (Default: 1)
Recovery:
recoveryFilePreviously saved log file to recover the execution of irace, either absolute path or relative to the current directory. If empty or NULL, recovery is not performed. (Default: "")
Testing:
testInstancesDirDirectory where testing instances are located, either absolute or relative to current directory. (Default: "")
testInstancesFileFile containing a list of test instances and optionally additional parameters for them. (Default: "")
testInstancesCharacter vector of the instances to be used in the targetRunner when executing the testing. (Default: "")
testNbElitesNumber of elite configurations returned by irace that will be tested if test instances are provided. (Default: 1)
testIterationElitesEnable/disable testing the elite configurations found at each iteration. (Default: 0)
readScenariofor reading a configuration scenario from a file.
printScenarioprints the given scenario.
defaultScenarioreturns the default scenario settings of irace.
checkScenarioto check that the scenario is valid.