Method
exportCustomModelVersion POST
Copy POST

Bundle custom model artifacts to a zip file, and export to the specified location.

Arguments:

REQUIRED KEY TYPE DESCRIPTION
Yes modelVersion str A unique string identifier for the model version.
Yes outputLocation str Location to export the model artifacts results. For example, s3://a-bucket/
No algorithm str The algorithm to be exported. Optional if there's only one custom algorithm in the model version.
Note: The arguments for the API methods follow camelCase but for Python SDK underscore_case is followed.

Response:

KEY TYPE DESCRIPTION
success Boolean true if the call succeeded, false if there was an error
result ModelArtifactsExport
KEY TYPE Description
modelArtifactsExportId str Unique identifier for this export.
modelVersion str Version of the model being exported.
outputLocation str File Connector location the feature group is being written to.
status str Current status of the export.
createdAt str Timestamp at which the export was created (ISO-8601 format).
exportCompletedAt str Timestamp at which the export completed (ISO-8601 format).
error str If `status` is `FAILED`, this field will be populated with an error.
Language: