ModelResponse

data class ModelResponse(val createdTime: String? = null, val datasets: List<DatasetReferenceResponse>? = null, val derivedModelIds: List<String>? = null, val description: String? = null, val experimentName: String? = null, val framework: String? = null, val frameworkVersion: String? = null, val id: String? = null, val kvTags: Map<String, String>? = null, val mimeType: String, val modifiedTime: String? = null, val name: String, val parentModelId: String? = null, val properties: Map<String, String>? = null, val resourceRequirements: ContainerResourceRequirementsResponse? = null, val runId: String? = null, val sampleInputData: String? = null, val sampleOutputData: String? = null, val unpack: Boolean? = null, val url: String, val version: Double? = null)

An Azure Machine Learning Model.

Constructors

Link copied to clipboard
constructor(createdTime: String? = null, datasets: List<DatasetReferenceResponse>? = null, derivedModelIds: List<String>? = null, description: String? = null, experimentName: String? = null, framework: String? = null, frameworkVersion: String? = null, id: String? = null, kvTags: Map<String, String>? = null, mimeType: String, modifiedTime: String? = null, name: String, parentModelId: String? = null, properties: Map<String, String>? = null, resourceRequirements: ContainerResourceRequirementsResponse? = null, runId: String? = null, sampleInputData: String? = null, sampleOutputData: String? = null, unpack: Boolean? = null, url: String, version: Double? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val createdTime: String? = null

The Model creation time (UTC).

Link copied to clipboard

The list of datasets associated with the model.

Link copied to clipboard

Models derived from this model

Link copied to clipboard
val description: String? = null

The Model description text.

Link copied to clipboard
val experimentName: String? = null

The name of the experiment where this model was created.

Link copied to clipboard
val framework: String? = null

The Model framework.

Link copied to clipboard

The Model framework version.

Link copied to clipboard
val id: String? = null

The Model Id.

Link copied to clipboard
val kvTags: Map<String, String>? = null

The Model tag dictionary. Items are mutable.

Link copied to clipboard

The MIME type of Model content. For more details about MIME type, please open https://www.iana.org/assignments/media-types/media-types.xhtml

Link copied to clipboard
val modifiedTime: String? = null

The Model last modified time (UTC).

Link copied to clipboard

The Model name.

Link copied to clipboard
val parentModelId: String? = null

The Parent Model Id.

Link copied to clipboard
val properties: Map<String, String>? = null

The Model property dictionary. Properties are immutable.

Link copied to clipboard

Resource requirements for the model

Link copied to clipboard
val runId: String? = null

The RunId that created this model.

Link copied to clipboard
val sampleInputData: String? = null

Sample Input Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}

Link copied to clipboard

Sample Output Data for the Model. A reference to a dataset in the workspace in the format aml://dataset/{datasetId}

Link copied to clipboard
val unpack: Boolean? = null

Indicates whether we need to unpack the Model during docker Image creation.

Link copied to clipboard
val url: String

The URL of the Model. Usually a SAS URL.

Link copied to clipboard
val version: Double? = null

The Model version assigned by Model Management Service.