TrialComponentResponse

data class TrialComponentResponse(val codeId: String? = null, val command: String, val distribution: Any? = null, val environmentId: String, val environmentVariables: Map<String, String>? = null, val resources: JobResourceConfigurationResponse? = null)

Trial component definition.

Constructors

Link copied to clipboard
constructor(codeId: String? = null, command: String, distribution: Any? = null, environmentId: String, environmentVariables: Map<String, String>? = null, resources: JobResourceConfigurationResponse? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val codeId: String? = null

ARM resource ID of the code asset.

Link copied to clipboard

Required The command to execute on startup of the job. eg. "python train.py"

Link copied to clipboard
val distribution: Any? = null

Distribution configuration of the job. If set, this should be one of Mpi, Tensorflow, PyTorch, or null.

Link copied to clipboard

Required The ARM resource ID of the Environment specification for the job.

Link copied to clipboard

Environment variables included in the job.

Link copied to clipboard

Compute Resource configuration for the job.