Global configuration

This section describes options that impact all modules.

Options

Name

Allowed

Default

Description

hardware

"cpu", "gpu"

"gpu"

Forces execution on the specified hardware. If the GPU is unavailable on the machine, RAITAP falls back to CPU and emits a CLI warning. Execution dependencies.

experiment_name

string

"Experiment"

Name of the experiment (assessment run).

hydra.run.dir

string

"./outputs/<date>/<time>"

Directory where Hydra stores the run outputs. If not specified, Hydra creates a timestamped directory under ./outputs relative to the terminal working directory where RAITAP was launched. If you want to forward outputs to your tracking software, see Configuration.

YAML example

hydra:
  run:
    dir: "./custom-outputs-dir"

hardware: "gpu"
experiment_name: "My Experiment"

CLI override example

uv run raitap hardware=cpu experiment_name="My_Experiment"
raitap hardware=cpu experiment_name="My_Experiment"

For module-specific options and examples, refer to Module-specific configurations.