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 |
|
|
|
MLflow backend store URI used when RAITAP starts a local MLflow server, or when |
|
|
|
MLflow artifact root used when RAITAP manages the local MLflow backend store or starts a local MLflow server. 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. |
Examples¶
tracking:
_target_: "MLFlowTracker"
output_forwarding_url: "http://127.0.0.1:5001"
log_model: true
from raitap.tracking import mlflow
tracking = mlflow(
output_forwarding_url="http://127.0.0.1:5001",
log_model=True,
)
uv run raitap +tracking=mlflow tracking.log_model=true
raitap +tracking=mlflow tracking.log_model=true