Resource: Model
Model represents a trained model.
JSON representation |
---|
{ "name": string, "createTime": string, "updateTime": string, "labels": { string: string, ... }, "state": enum ( |
Fields | |
---|---|
name |
Output only. The resource name of the Model. format: "/projects/{project_num}/locations/{location}/instances/{instance}/models/{model}" |
createTime |
Output only. The timestamp of creation of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
updateTime |
Output only. The timestamp of the most recent update of this resource. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
labels |
Labels An object containing a list of |
state |
Output only. State of the model (creating, active, deleting, etc.) |
engineVersion |
Output only. The EngineVersion used in training this model. This is output only, and is determined from the EngineConfig used. |
engineConfig |
Required. The resource name of the EngineConfig the model training will be based on. Format: "/projects/{project_num}/locations/{location}/instances/{instance}/engineConfigs/{engineConfig}" |
primaryDataset |
Required. The resource name of the Primary Dataset used in this model training. For information about how primary and auxiliary datasets are used, refer to the engine version's documentation. Format: "/projects/{project_num}/locations/{location}/instances/{instance}/datasets/{dataset}" |
endTime |
Required. End_time specifies the latest time from which labels are used and from which data is used to generate features for training. End_time should be no later than the end of the dateRange of the dataset. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
lineOfBusiness |
Output only. The line of business (Retail/Commercial) this model is used for. Determined by EngineConfig, cannot be set by user. |
State
The possible states of a resource.
Enums | |
---|---|
STATE_UNSPECIFIED |
State is unspecified, should not occur. |
CREATING |
The resource has not finished being created. |
ACTIVE |
The resource is active/ready to be used. |
UPDATING |
The resource is in the process of being updated. |
DELETING |
The resource is in the process of being deleted. |
Methods |
|
---|---|
|
Creates a model. |
|
Deletes a model. |
|
Export governance information for a Model resource. |
|
Gets a model. |
|
Lists models. |
|
Updates the parameters of a single Model. |