GetModelResult

data class GetModelResult(val createTime: String, val dataset: String, val displayName: String, val name: String, val sourceLanguageCode: String, val targetLanguageCode: String, val testExampleCount: Int, val trainExampleCount: Int, val updateTime: String, val validateExampleCount: Int)

Constructors

Link copied to clipboard
fun GetModelResult(createTime: String, dataset: String, displayName: String, name: String, sourceLanguageCode: String, targetLanguageCode: String, testExampleCount: Int, trainExampleCount: Int, updateTime: String, validateExampleCount: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Timestamp when the model resource was created, which is also when the training started.

Link copied to clipboard

The dataset from which the model is trained, in form of projects/{project-number-or-id}/locations/{location_id}/datasets/{dataset_id}

Link copied to clipboard

The name of the model to show in the interface. The name can be up to 32 characters long and can consist only of ASCII Latin letters A-Z and a-z, underscores (_), and ASCII digits 0-9.

Link copied to clipboard

The resource name of the model, in form of projects/{project-number-or-id}/locations/{location_id}/models/{model_id}

Link copied to clipboard

The BCP-47 language code of the source language.

Link copied to clipboard

The BCP-47 language code of the target language.

Link copied to clipboard

Number of examples (sentence pairs) used to test the model.

Link copied to clipboard

Number of examples (sentence pairs) used to train the model.

Link copied to clipboard

Timestamp when this model was last updated.

Link copied to clipboard

Number of examples (sentence pairs) used to validate the model.