Method: projects.locations.models.modelEvaluations.list

Lists model evaluations.

HTTP request

GET https://automl.googleapis.com/v1beta1/{parent}/modelEvaluations

Path parameters

Parameters
parent

string

Resource name of the model to list the model evaluations for. If modelId is set as "-", this will list model evaluations from across all models of the parent location.

Authorization requires the following Google IAM permission on the specified resource parent:

  • automl.modelEvaluations.list

Query parameters

Parameters
filter

string

An expression for filtering the results of the request.

  • annotationSpecId - for =, != or existence. See example below for the last.

Some examples of using the filter are:

  • annotationSpecId!=4 --> The model evaluation was done for annotation spec with ID different than 4.
  • NOT annotationSpecId:* --> The model evaluation was done for aggregate of all annotation specs.

pageSize

number

Requested page size.

pageToken

string

A token identifying a page of results for the server to return. Typically obtained via ListModelEvaluationsResponse.next_page_token of the previous AutoMl.ListModelEvaluations call.

Request body

The request body must be empty.

Response body

If successful, the response body contains data with the following structure:

Response message for AutoMl.ListModelEvaluations.

JSON representation
{
  "modelEvaluation": [
    {
      object(ModelEvaluation)
    }
  ],
  "nextPageToken": string
}
Fields
modelEvaluation[]

object(ModelEvaluation)

List of model evaluations in the requested page.

nextPageToken

string

A token to retrieve next page of results. Pass to the ListModelEvaluationsRequest.page_token field of a new AutoMl.ListModelEvaluations request to obtain that page.

Authorization Scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.