Mlflow implementation #2

Merged
slalom merged 10 commits from ml-flow into main 2026-06-02 19:04:23 +00:00
Showing only changes of commit 416e51901d - Show all commits

View File

@@ -12,12 +12,7 @@ from src.config import Config, MlflowMode
class Tracker(Protocol):
def start_training_run(self, training_job: Any, *, region: str, profile: str, role_arn: str) -> str | None: ...
def finalize_training_run(
self,
*,
run_id: str | None,
training_job_status: Any,
) -> str | None: ...
def finalize_training_run(self, *, run_id: str | None, training_job_status: Any) -> str | None: ...
@dataclass(frozen=True)