Configuration¶
This page describes how to configure the tracking module that forwards the pipeline’s output to a tracking backend.
Options¶
Name |
Allowed |
Default |
Description |
|---|---|---|---|
|
|
|
Hydra target for the tracking backend implementation. |
|
|
|
Tracking URI used by the backend. For |
|
|
|
Whether to log the assessed model to the tracking backend. Note that this might take significant time and resources for large models. |
|
|
|
Whether to open the tracking UI automatically after the run completes. |
YAML example¶
tracking:
_target_: "MLFlowTracker"
output_forwarding_url: "http://127.0.0.1:5000"
log_model: true
CLI override example¶
uv run raitap tracking=mlflow tracking.log_model=true
raitap tracking=mlflow tracking.log_model=true