search method
- GoogleCloudDatalabelingV1beta1SearchExampleComparisonsRequest request,
- String parent, {
- String? $fields,
Searches example comparisons from an evaluation.
The return format is a list of example comparisons that show ground truth and prediction(s) for a single input. Search by providing an evaluation ID.
request
- The metadata request object.
Request parameters:
parent
- Required. Name of the Evaluation resource to search for example
comparisons from. Format:
"projects/{project_id}/datasets/{dataset_id}/evaluations/ {evaluation_id}"
Value must have pattern
^projects/\[^/\]+/datasets/\[^/\]+/evaluations/\[^/\]+$
.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleCloudDatalabelingV1beta1SearchExampleComparisonsResponse.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<GoogleCloudDatalabelingV1beta1SearchExampleComparisonsResponse>
search(
GoogleCloudDatalabelingV1beta1SearchExampleComparisonsRequest request,
core.String parent, {
core.String? $fields,
}) async {
final _body = convert.json.encode(request);
final _queryParams = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final _url = 'v1beta1/' +
core.Uri.encodeFull('$parent') +
'/exampleComparisons:search';
final _response = await _requester.request(
_url,
'POST',
body: _body,
queryParams: _queryParams,
);
return GoogleCloudDatalabelingV1beta1SearchExampleComparisonsResponse
.fromJson(_response as core.Map<core.String, core.dynamic>);
}