Source code for mlrun.artifacts.model

# Copyright 2023 Iguazio
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import tempfile
from os import path
from typing import Any, Optional, Union

import pandas as pd
import yaml

import mlrun
import mlrun.datastore

from ..data_types import InferOptions, get_infer_interface
from ..features import Feature
from ..model import ObjectList
from ..utils import StorePrefix, is_relative_path
from .base import Artifact, ArtifactSpec, upload_extra_data, verify_target_path

model_spec_filename = "model_spec.yaml"
MODEL_OPTIONAL_SUFFIXES = [".tar.gz", ".pkl", ".bin", ".pickle"]


[docs] class ModelArtifactSpec(ArtifactSpec): _dict_fields = ArtifactSpec._dict_fields + [ "model_file", "metrics", "parameters", "inputs", "outputs", "framework", "algorithm", "feature_vector", "feature_weights", "feature_stats", "model_target_file", "model_url", ] _exclude_fields_from_uid_hash = ArtifactSpec._exclude_fields_from_uid_hash + [ "metrics", "parameters", "inputs", "outputs", "feature_vector", "feature_weights", "feature_stats", ] def __init__( self, src_path=None, target_path=None, viewer=None, is_inline=False, format=None, size=None, db_key=None, extra_data=None, body=None, model_file=None, metrics=None, paraemeters=None, inputs: Optional[list[Feature]] = None, outputs: Optional[list[Feature]] = None, framework=None, algorithm=None, feature_vector=None, feature_weights=None, feature_stats=None, model_target_file=None, model_url=None, ): super().__init__( src_path, target_path, viewer, is_inline, format, size, db_key, extra_data, body, ) self.model_file = model_file self.metrics = metrics or {} self.parameters = paraemeters or {} self.inputs = inputs or [] self.outputs = outputs or [] self.framework = framework self.algorithm = algorithm self.feature_vector = feature_vector self.feature_weights = feature_weights self.feature_stats = feature_stats self.model_target_file = model_target_file self.model_url = model_url @property def inputs(self) -> ObjectList: """input feature list""" return self._inputs @inputs.setter def inputs(self, inputs: list[Feature]) -> None: self._inputs = ObjectList.from_list(Feature, inputs) @property def outputs(self) -> ObjectList: """output feature list""" return self._outputs @outputs.setter def outputs(self, outputs: list[Feature]) -> None: self._outputs = ObjectList.from_list(Feature, outputs) @property def default_config(self): return self.parameters.get("default_config", {}) @default_config.setter def default_config(self, default_config): # skip storing 'default_config' if value is empty or unset if default_config: self.parameters["default_config"] = default_config else: self.parameters.pop("default_config", None)
[docs] class ModelArtifact(Artifact): """ML Model artifact Store link to ML model file(s) along with the model metrics, parameters, schema, and stats """ kind = "model" _store_prefix = StorePrefix.Model def __init__( self, key=None, body=None, format=None, model_file=None, metrics=None, target_path=None, parameters=None, inputs=None, outputs=None, framework=None, algorithm=None, feature_vector=None, feature_weights=None, extra_data=None, model_dir=None, model_url: Optional[str] = None, default_config: Optional[dict] = None, **kwargs, ): """ :param key: Artifact key or artifact class () :param body: Will use the body as the artifact content :param format: Optional, format to use (e.g. csv, parquet, ..) :param model_file: Path to the local model file we upload (see also model_dir) or to a model file data url (e.g. `http://host/path/model.pkl`) :param metrics: The key/value dict of model metrics :param target_path: Absolute target path (instead of using artifact_path + local_path) :param parameters: Key/value dict of model parameters :param inputs: Ordered list of model input features (name, type, ..) :param outputs: Ordered list of model output/result elements (name, type, ..) :param framework: Name of the ML framework :param algorithm: Training algorithm name :param feature_vector: Feature store feature vector uri (store://feature-vectors/<project>/<name>[:tag]) :param feature_weights: List of feature weights, one per input column :param extra_data: Extra artifacts and files to log with the model. :param model_dir: Path to the local dir holding the model file and extra files :param model_url: Remote model url. :param default_config: Default configuration for client building Saved as a sub-dictionary under the parameter. :param kwargs: Arguments to pass to the artifact class. """ super().__init__(key, body, format=format, target_path=target_path, **kwargs) model_file = str(model_file or "") if model_file and model_url: raise mlrun.errors.MLRunInvalidArgumentError( "Arguments 'model_file' and 'model_dir' cannot be" " used together with 'model_url'." ) if model_file and "/" in model_file: if model_dir: raise mlrun.errors.MLRunInvalidArgumentError( "'model_file' cannot contain '/' (i.e., be a full path) when 'model_dir' is also specified" ) model_dir = path.dirname(model_file) model_file = path.basename(model_file) self.spec.model_file = model_file self.spec.src_path = model_dir self.spec.parameters = parameters or {} self.spec.metrics = metrics or {} self.spec.inputs = inputs or [] self.spec.outputs = outputs or [] self.spec.extra_data = extra_data or {} self.spec.framework = framework self.spec.algorithm = algorithm self.spec.feature_vector = feature_vector self.spec.feature_weights = feature_weights self.spec.feature_stats = None self.spec.model_url = model_url self.default_config = default_config @property def spec(self) -> ModelArtifactSpec: return self._spec @spec.setter def spec(self, spec): self._spec = self._verify_dict(spec, "spec", ModelArtifactSpec) @property def inputs(self) -> ObjectList: """input feature list""" return self.spec.inputs @inputs.setter def inputs(self, inputs: list[Feature]) -> None: """input feature list""" self.spec.inputs = inputs @property def outputs(self) -> ObjectList: """input feature list""" return self.spec.outputs @outputs.setter def outputs(self, outputs: list[Feature]) -> None: """input feature list""" self.spec.outputs = outputs @property def model_file(self): return self.spec.model_file @model_file.setter def model_file(self, model_file): self.spec.model_file = model_file @property def model_url(self): return self.spec.model_url @model_url.setter def model_url(self, model_url): self.spec.model_url = model_url @property def parameters(self): return self.spec.parameters @parameters.setter def parameters(self, parameters): self.spec.parameters = parameters @property def default_config(self): return self.spec.default_config @default_config.setter def default_config(self, default_config): self.spec.default_config = default_config @property def metrics(self): return self.spec.metrics @metrics.setter def metrics(self, metrics): self.spec.metrics = metrics @property def feature_stats(self): return self.spec.feature_stats @feature_stats.setter def feature_stats(self, feature_stats): self.spec.feature_stats = feature_stats @property def feature_vector(self): return self.spec.feature_vector @feature_vector.setter def feature_vector(self, feature_vector): self.spec.feature_vector = feature_vector @property def feature_weights(self): return self.spec.feature_weights @feature_weights.setter def feature_weights(self, feature_weights): self.spec.feature_weights = feature_weights @property def model_target_file(self): return self.spec.model_target_file @model_target_file.setter def model_target_file(self, model_target_file): self.spec.model_target_file = model_target_file
[docs] def infer_from_df(self, df, label_columns=None, with_stats=True, num_bins=None): """infer inputs, outputs, and stats from provided df (training set) :param df: dataframe to infer from :param label_columns: name of the label (target) column :param with_stats: infer statistics (min, max, .. histogram) :param num_bins: number of bins for histogram """ subset = df inferer = get_infer_interface(subset) numeric_columns = self._extract_numeric_features(df) if label_columns: if not isinstance(label_columns, list): label_columns = [label_columns] subset = df.drop(columns=label_columns) inferer.infer_schema( subset, self.spec.inputs, {}, options=InferOptions.Features ) if label_columns: inferer.infer_schema( df[label_columns], self.spec.outputs, {}, options=InferOptions.Features, push_at_start=True, ) if with_stats: self.spec.feature_stats = inferer.get_stats( df[numeric_columns], options=InferOptions.Histogram, num_bins=num_bins )
@staticmethod def _extract_numeric_features(df: pd.DataFrame) -> list[Any]: return [col for col in df.columns if pd.api.types.is_numeric_dtype(df[col])] @property def is_dir(self): return True
[docs] def before_log(self): if not self.spec.model_file and not self.spec.model_url: raise ValueError( "ModelArtifact must have either 'model_file' or 'model_url' attributes" ) super().before_log() if self.spec.framework: self.metadata.labels = self.metadata.labels or {} self.metadata.labels["framework"] = self.spec.framework
[docs] def upload(self, artifact_path: Optional[str] = None): """ internal, upload to target store :param artifact_path: required only for when generating target_path from artifact hash """ # if mlrun.mlconf.artifacts.generate_target_path_from_artifact_hash outputs True and the user # didn't pass target_path explicitly, then target_path will be calculated right before uploading the artifact # using `resolve_<body/file>_target_hash_path` target_model_path = None if self.spec.target_path: target_model_path = path.join( self.spec.target_path, path.basename(self.spec.model_file) ) target_model_path = self._upload_body_or_file( artifact_path, target_model_path=target_model_path ) upload_extra_data( artifact=self, extra_data=self.spec.extra_data, artifact_path=artifact_path ) spec_body = _sanitize_and_serialize_model_spec_yaml(self) spec_target_path = None if mlrun.mlconf.artifacts.generate_target_path_from_artifact_hash: # resolving target_path for the model spec _, spec_target_path = self.resolve_body_target_hash_path( body=spec_body, artifact_path=artifact_path ) # if mlrun.mlconf.artifacts.generate_target_path_from_artifact_hash outputs True, then target_path # will point to the artifact path which is where the model and all its extra data are stored self.spec.target_path = ( artifact_path + "/" if not artifact_path.endswith("/") else artifact_path ) # unlike in extra_data, which stores for each key the path to the file, in target_path we store the # target path dir, and because we generated the target path of the model from the artifact hash, # the model_file doesn't represent the actual target file name of the model, so we need to update it self.spec.model_target_file = path.basename(target_model_path) spec_target_path = spec_target_path or path.join( self.spec.target_path, model_spec_filename ) mlrun.datastore.store_manager.object(url=spec_target_path).put(spec_body)
def _upload_body_or_file( self, artifact_path: str, target_model_path: Optional[str] = None, ): body = self.spec.get_body() if body: if not target_model_path: ( self.metadata.hash, target_model_path, ) = self.resolve_body_target_hash_path( body=body, artifact_path=artifact_path ) self._upload_body( body, target=target_model_path, artifact_path=artifact_path ) else: src_model_path = _get_src_path(self, self.spec.model_file) if not path.isfile(src_model_path): raise ValueError(f"Model file {src_model_path} not found") if not target_model_path: ( self.metadata.hash, target_model_path, ) = self.resolve_file_target_hash_path( source_path=src_model_path, artifact_path=artifact_path ) self._upload_file( src_model_path, target_path=target_model_path, artifact_path=artifact_path, ) return target_model_path def _get_file_body(self): body = self.spec.get_body() if body: return body src_model_path = _get_src_path(self, self.spec.model_file) if src_model_path and path.isfile(src_model_path): with open(src_model_path, "rb") as fp: return fp.read() target_model_path = path.join(self.spec.target_path, self.spec.model_file) return mlrun.get_dataitem(target_model_path).get()
[docs] def get_model( model_dir: Optional[ Union[str, ModelArtifact, "mlrun.datastore.base.DataItem"] ] = None, suffix="", ) -> (str, ModelArtifact, dict): """Return model file, model spec object, and dictionary of extra data items this function will get the model file, metadata, and extra data the returned model file is always local, when using remote urls (such as v3io://, s3://, store://, ..) it will be copied locally. returned extra data dict (of key, DataItem objects) allow reading additional model files/objects e.g. use DataItem.get() or .download(target) .as_df() to read example:: model_file, model_artifact, extra_data = get_model(models_path, suffix=".pkl") model = load(open(model_file, "rb")) categories = extra_data["categories"].as_df() :param model_dir: model dir or artifact path (store://..) or DataItem :param suffix: model filename suffix (when using a dir) :returns: model filename, model artifact object, extra data dict """ model_file = "" model_spec = None extra_dataitems = {} default_suffix = ".pkl" if hasattr(model_dir, "artifact_url"): model_dir = model_dir.artifact_url alternative_suffix = next( ( optional_suffix for optional_suffix in MODEL_OPTIONAL_SUFFIXES if isinstance(model_dir, str) and model_dir.lower().endswith(optional_suffix) ), None, ) is_store_uri = isinstance(model_dir, str) and mlrun.datastore.is_store_uri( model_dir ) if is_store_uri or isinstance(model_dir, ModelArtifact): if is_store_uri: model_spec, target = mlrun.datastore.store_manager.get_store_artifact( model_dir ) verify_target_path(model_spec) else: model_spec, target = model_dir, model_dir.get_target_path() if not model_spec or model_spec.kind != "model": raise ValueError(f"store artifact ({model_dir}) is not model kind") # in case model_target_file is specified, use it, because that means that the actual model target path # in the store is different from the local model_file it was generated from model_file = _get_file_path( target, model_spec.model_target_file or model_spec.model_file ) extra_dataitems = _get_extra(target, model_spec.extra_data) suffix = suffix or default_suffix elif model_dir.lower().endswith(".yaml"): model_spec = _load_model_spec(model_dir) model_file = _get_file_path(model_dir, model_spec.model_file) extra_dataitems = _get_extra(model_dir, model_spec.extra_data) suffix = suffix or default_suffix elif suffix and model_dir.endswith(suffix): model_file = model_dir elif not suffix and alternative_suffix: suffix = alternative_suffix model_file = model_dir else: suffix = suffix or default_suffix dirobj = mlrun.datastore.store_manager.object(url=model_dir) model_dir_list = dirobj.listdir() if model_spec_filename in model_dir_list: model_spec = _load_model_spec(path.join(model_dir, model_spec_filename)) model_file = _get_file_path(model_dir, model_spec.model_file, isdir=True) extra_dataitems = _get_extra(model_dir, model_spec.extra_data, is_dir=True) else: extra_dataitems = _get_extra( model_dir, {v: v for v in model_dir_list}, is_dir=True ) for file in model_dir_list: if file.endswith(suffix): model_file = path.join(model_dir, file) break if not model_file: raise ValueError(f"cant resolve model file for {model_dir} suffix{suffix}") obj = mlrun.datastore.store_manager.object(url=model_file) if obj.kind == "file": return model_file, model_spec, extra_dataitems temp_path = tempfile.NamedTemporaryFile(suffix=suffix, delete=False).name obj.download(temp_path) return temp_path, model_spec, extra_dataitems
[docs] def update_model( model_artifact, parameters: Optional[dict] = None, metrics: Optional[dict] = None, extra_data: Optional[dict] = None, inputs: Optional[list[Feature]] = None, outputs: Optional[list[Feature]] = None, feature_vector: Optional[str] = None, feature_weights: Optional[list] = None, key_prefix: str = "", labels: Optional[dict] = None, write_spec_copy=True, store_object: bool = True, ) -> ModelArtifact: """Update model object attributes this method will edit or add attributes to a model object example:: update_model( model_path, metrics={"speed": 100}, extra_data={"my_data": b"some text", "file": "s3://mybucket/.."}, ) :param model_artifact: model artifact object or path (store://..) or DataItem :param parameters: parameters dict :param metrics: model metrics e.g. accuracy :param extra_data: extra data items key, value dict (value can be: path string | bytes | artifact) :param inputs: list of input features (feature vector schema) :param outputs: list of output features (output vector schema) :param feature_vector: feature store feature vector uri (store://feature-vectors/<project>/<name>[:tag]) :param feature_weights: list of feature weights, one per input column :param key_prefix: key prefix to add to metrics and extra data items :param labels: metadata labels :param write_spec_copy: write a YAML copy of the spec to the target dir :param store_object: Whether to store the model artifact updated. """ if hasattr(model_artifact, "artifact_url"): model_artifact = model_artifact.artifact_url if isinstance(model_artifact, ModelArtifact): model_spec = model_artifact elif mlrun.datastore.is_store_uri(model_artifact): model_spec, _ = mlrun.datastore.store_manager.get_store_artifact(model_artifact) else: raise ValueError("model path must be a model store object/URL/DataItem") if not model_spec or model_spec.kind != "model": raise ValueError(f"store artifact ({model_artifact}) is not model kind") if parameters: for key, val in parameters.items(): model_spec.parameters[key] = val if metrics: for key, val in metrics.items(): model_spec.metrics[key_prefix + key] = val if labels: for key, val in labels.items(): model_spec.labels[key] = val if inputs: model_spec.inputs = inputs if outputs: model_spec.outputs = outputs if feature_weights: model_spec.feature_weights = feature_weights if feature_vector: model_spec.feature_vector = feature_vector if extra_data: for key, item in extra_data.items(): if hasattr(item, "target_path"): extra_data[key] = item.target_path upload_extra_data(model_spec, extra_data, prefix=key_prefix, update_spec=True) if write_spec_copy: spec_path = path.join(model_spec.target_path, model_spec_filename) model_spec_yaml = _sanitize_and_serialize_model_spec_yaml(model_spec) mlrun.datastore.store_manager.object(url=spec_path).put(model_spec_yaml) model_spec.db_key = model_spec.db_key or model_spec.key if store_object: mlrun.get_run_db().store_artifact( model_spec.db_key, model_spec.to_dict(), tree=model_spec.tree, iter=model_spec.iter, project=model_spec.project, ) return model_spec
def _get_src_path(model_spec: ModelArtifact, filename: str) -> str: return path.join(model_spec.src_path, filename) if model_spec.src_path else filename def _load_model_spec(spec_path) -> ModelArtifact: data = mlrun.datastore.store_manager.object(url=spec_path).get() spec = yaml.load(data, Loader=yaml.FullLoader) return ModelArtifact.from_dict(spec) def _get_file_path(base_path: str, name: str, isdir: bool = False) -> str: if not is_relative_path(name): return name if not isdir: base_path = path.dirname(base_path) return path.join(base_path, name).replace("\\", "/") def _get_extra(target: str, extra_data: dict, is_dir: bool = False) -> dict: extra_dataitems = {} for k, v in extra_data.items(): extra_dataitems[k] = mlrun.datastore.store_manager.object( url=_get_file_path(target, v, isdir=is_dir), key=k ) return extra_dataitems def _sanitize_and_serialize_model_spec_yaml(model: ModelArtifact) -> str: model_dict = _sanitize_model_spec(model) return _serialize_model_spec_yaml(model_dict) def _sanitize_model_spec(model: ModelArtifact) -> dict: model_dict = model.to_dict() # The model spec yaml should not include the tag, as the same model can be used with different tags, # and the tag is not part of the model spec but the metadata of the model artifact model_dict["metadata"].pop("tag", None) # Remove future packaging links if model_dict["spec"].get("extra_data"): model_dict["spec"]["extra_data"] = { key: item for key, item in model_dict["spec"]["extra_data"].items() if item is not ... } return model_dict def _serialize_model_spec_yaml(model_dict: dict) -> str: return yaml.safe_dump(model_dict)