SIENTIAPDE-1241: refactor train_model workflow due to I/O errors.

This commit is contained in:
Bruno Domingues
2025-10-22 15:37:56 -03:00
parent f2a1c88ff3
commit 5789a13023
31 changed files with 37878 additions and 6097 deletions

View File

@@ -31,7 +31,6 @@ class ModelServing:
tracking_uri: str,
username: str | None = None,
password: str | None = None,
logger: Any | None = None,
):
"""
Initialize ModelServing client.
@@ -54,9 +53,6 @@ class ModelServing:
if password is not None:
os.environ['MLFLOW_TRACKING_PASSWORD'] = password
# Note: logger parameter is accepted but not used
# Consider removing if not needed, or implement logging
# Function to list runs for a given experiment
def search_runs_by_name(
self, experiment_names: list[str], order_by: None | list[str] = None