models_checkpoints
Creates, updates, deletes, gets or lists a models_checkpoints resource.
Overview
| Name | models_checkpoints |
| Type | Resource |
| Id | google.aiplatform.models_checkpoints |
Fields
The following fields are returned by SELECT queries:
- list_checkpoints
| Name | Datatype | Description |
|---|---|---|
checkpointId | string | The ID of the checkpoint. |
epoch | string (int64) | The epoch of the checkpoint. |
step | string (int64) | The step of the checkpoint. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_checkpoints | select | projectsId, locationsId, modelsId | pageSize, pageToken | Lists checkpoints of the specified model version. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
locationsId | string | |
modelsId | string | |
projectsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT examples
- list_checkpoints
Lists checkpoints of the specified model version.
SELECT
checkpointId,
epoch,
step
FROM google.aiplatform.models_checkpoints
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND modelsId = '{{ modelsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
;