Global configuration¶
This section describes options that impact all modules.
Options¶
Name |
Allowed |
Default |
Description |
|---|---|---|---|
|
|
|
Forces execution on the specified hardware. The config-level enum is only |
|
|
|
Name of the experiment (assessment run). |
|
|
|
Directory where Hydra stores the run outputs. If not specified, Hydra creates a timestamped directory under |
YAML example¶
hydra:
run:
dir: "./custom-outputs-dir"
hardware: "gpu"
experiment_name: "My Experiment"
from raitap import AppConfig, Hardware
# Python users construct AppConfig directly and call ``run(config)``;
# ``hydra.run.dir`` is a CLI/YAML-only knob (set the output directory in
# your own code instead).
config = AppConfig(
hardware=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.