ModelTrainingState

enum ModelTrainingState : Enum<ModelTrainingState> , ConvertibleToJava<ModelTrainingState>

Optional. The training state that the model is in (e.g. TRAINING or PAUSED). Since part of the cost of running the service is frequency of training - this can be used to determine when to train model in order to control cost. If not specified: the default value for CreateModel method is TRAINING. The default value for UpdateModel method is to keep the state the same as before.

Entries

Link copied to clipboard

Unspecified training state.

Link copied to clipboard

The model training is paused.

Link copied to clipboard

The model is training.

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open override fun toJava(): ModelTrainingState
Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.

Properties

Link copied to clipboard
val javaValue: ModelTrainingState
Link copied to clipboard
Link copied to clipboard