StoredModelInfo
Information about a stored model.
Attributes
| Attribute | Type | Description |
|---|---|---|
| artifact_name | str | Name of the stored artifact. |
| path | str | Path to the stored model directory. |
| metadata | dict[str, str] | Metadata about the stored model. |
Constructor
Signature
def StoredModelInfo(
artifact_name: str,
path: str,
metadata: dict[str, str]
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| artifact_name | str | Name of the stored artifact. |
| path | str | Path to the stored model directory. |
| metadata | dict[str, str] | Metadata about the stored model. |
Signature
def StoredModelInfo(
artifact_name: str,
path: str,
metadata: dict[str, str]
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| artifact_name | str | The unique identifier or name assigned to the stored model artifact. |
| path | str | The filesystem or remote storage path where the model directory is located. |
| metadata | dict[str, str] | A collection of key-value pairs providing additional context or configuration details for the stored model. |