Skip to main content

StoredModelInfo

Information about a stored model.

Attributes

AttributeTypeDescription
artifact_namestrName of the stored artifact.
pathstrPath to the stored model directory.
metadatadict[str, str]Metadata about the stored model.

Constructor

Signature

def StoredModelInfo(
artifact_name: str,
path: str,
metadata: dict[str, str]
) - > null

Parameters

NameTypeDescription
artifact_namestrName of the stored artifact.
pathstrPath to the stored model directory.
metadatadict[str, str]Metadata about the stored model.

Signature

def StoredModelInfo(
artifact_name: str,
path: str,
metadata: dict[str, str]
) - > null

Parameters

NameTypeDescription
artifact_namestrThe unique identifier or name assigned to the stored model artifact.
pathstrThe filesystem or remote storage path where the model directory is located.
metadatadict[str, str]A collection of key-value pairs providing additional context or configuration details for the stored model.