wip mlflow implementation

This commit is contained in:
2026-05-26 15:03:53 -04:00
parent 0e728cc193
commit b907a74525
10 changed files with 2190 additions and 26 deletions

3
src/tracking/__init__.py Normal file
View File

@@ -0,0 +1,3 @@
from src.tracking.mlflow import MlflowTracker, NoopTracker, Tracker
__all__ = ["MlflowTracker", "NoopTracker", "Tracker"]