Show / Hide Table of Contents

Class EvaluateAnnotationStoreRequest

Request to evaluate an Annotation store against a ground truth [Annotation store].

Inheritance
object
EvaluateAnnotationStoreRequest
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudHealthcare.v1beta1.Data
Assembly: Google.Apis.CloudHealthcare.v1beta1.dll
Syntax
public class EvaluateAnnotationStoreRequest : IDirectResponseSchema

Properties

BigqueryDestination

The BigQuery table where the server writes the output. BigQueryDestination requires the roles/bigquery.dataEditor and roles/bigquery.jobUser Cloud IAM roles.

Declaration
[JsonProperty("bigqueryDestination")]
public virtual GoogleCloudHealthcareV1beta1AnnotationBigQueryDestination BigqueryDestination { get; set; }
Property Value
Type Description
GoogleCloudHealthcareV1beta1AnnotationBigQueryDestination

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

EvalInfoTypeMapping

Optional. InfoType mapping for eval_store. Different resources can map to the same infoType. For example, PERSON_NAME, PERSON, NAME, and HUMAN are different. To map all of these into a single infoType (such as PERSON_NAME), specify the following mapping:

info_type_mapping["PERSON"] = "PERSON_NAME"
info_type_mapping["NAME"] = "PERSON_NAME" info_type_mapping["HUMAN"] = "PERSON_NAME"

Unmentioned infoTypes, such as DATE, are treated as identity mapping. For example:

info_type_mapping["DATE"] =
"DATE"

InfoTypes are case-insensitive.

Declaration
[JsonProperty("evalInfoTypeMapping")]
public virtual IDictionary<string, string> EvalInfoTypeMapping { get; set; }
Property Value
Type Description
IDictionary<string, string>

GoldenInfoTypeMapping

Optional. Similar to eval_info_type_mapping, infoType mapping for golden_store.

Declaration
[JsonProperty("goldenInfoTypeMapping")]
public virtual IDictionary<string, string> GoldenInfoTypeMapping { get; set; }
Property Value
Type Description
IDictionary<string, string>

GoldenStore

Required. The Annotation store to use as ground truth, in the format of projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/annotationStores/{annotation_store_id}.

Declaration
[JsonProperty("goldenStore")]
public virtual string GoldenStore { get; set; }
Property Value
Type Description
string

InfoTypeConfig

Declaration
[JsonProperty("infoTypeConfig")]
public virtual InfoTypeConfig InfoTypeConfig { get; set; }
Property Value
Type Description
InfoTypeConfig

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX