Method: projects.locations.models.modelEvaluations.list
Stay organized with collections
Save and categorize content based on your preferences.
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 |
integer
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:
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.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2019-12-17 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2019-12-17 UTC."],[[["This page details how to list model evaluations using an HTTP GET request to the specified URL, `https://automl.googleapis.com/v1beta1/{parent}/modelEvaluations`."],["The request requires a `parent` path parameter, which is the resource name of the model, and appropriate Google IAM permissions."],["Optional query parameters such as `filter`, `pageSize`, and `pageToken` can be used to refine the results returned, like filtering based on annotation spec ID or specifying page size."],["The request body must be empty, and a successful response will contain a list of model evaluations and potentially a token for retrieving the next page of results."],["To authorize this request, you must include the `https://www.googleapis.com/auth/cloud-platform` OAuth scope."]]],[]]