TensorFlowResponse

data class TensorFlowResponse(val distributionType: String, val parameterServerCount: Int? = null, val workerCount: Int? = null)

TensorFlow distribution configuration.

Constructors

Link copied to clipboard
constructor(distributionType: String, parameterServerCount: Int? = null, workerCount: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Enum to determine the job distribution type. Expected value is 'TensorFlow'.

Link copied to clipboard

Number of parameter server tasks.

Link copied to clipboard
val workerCount: Int? = null

Number of workers. Overwrites the node count in compute binding.