Show / Hide Table of Contents

Class GoogleCloudDatalabelingV1beta1EvaluationJobConfig

Configures specific details of how a continuous evaluation job works. Provide this configuration when you create an EvaluationJob.

Inheritance
object
GoogleCloudDatalabelingV1beta1EvaluationJobConfig
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.DataLabeling.v1beta1.Data
Assembly: Google.Apis.DataLabeling.v1beta1.dll
Syntax
public class GoogleCloudDatalabelingV1beta1EvaluationJobConfig : IDirectResponseSchema

Properties

BigqueryImportKeys

Required. Prediction keys that tell Data Labeling Service where to find the data for evaluation in your BigQuery table. When the service samples prediction input and output from your model version and saves it to BigQuery, the data gets stored as JSON strings in the BigQuery table. These keys tell Data Labeling Service how to parse the JSON. You can provide the following entries in this field: * data_json_key: the data key for prediction input. You must provide either this key or reference_json_key. * reference_json_key: the data reference key for prediction input. You must provide either this key or data_json_key. * label_json_key: the label key for prediction output. Required. * label_score_json_key: the score key for prediction output. Required. * bounding_box_json_key: the bounding box key for prediction output. Required if your model version perform image object detection. Learn how to configure prediction keys.

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

BoundingPolyConfig

Specify this field if your model version performs image object detection (bounding box detection). annotationSpecSet in this configuration must match EvaluationJob.annotationSpecSet.

Declaration
[JsonProperty("boundingPolyConfig")]
public virtual GoogleCloudDatalabelingV1beta1BoundingPolyConfig BoundingPolyConfig { get; set; }
Property Value
Type Description
GoogleCloudDatalabelingV1beta1BoundingPolyConfig

ETag

The ETag of the item.

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

EvaluationConfig

Required. Details for calculating evaluation metrics and creating Evaulations. If your model version performs image object detection, you must specify the boundingBoxEvaluationOptions field within this configuration. Otherwise, provide an empty object for this configuration.

Declaration
[JsonProperty("evaluationConfig")]
public virtual GoogleCloudDatalabelingV1beta1EvaluationConfig EvaluationConfig { get; set; }
Property Value
Type Description
GoogleCloudDatalabelingV1beta1EvaluationConfig

EvaluationJobAlertConfig

Optional. Configuration details for evaluation job alerts. Specify this field if you want to receive email alerts if the evaluation job finds that your predictions have low mean average precision during a run.

Declaration
[JsonProperty("evaluationJobAlertConfig")]
public virtual GoogleCloudDatalabelingV1beta1EvaluationJobAlertConfig EvaluationJobAlertConfig { get; set; }
Property Value
Type Description
GoogleCloudDatalabelingV1beta1EvaluationJobAlertConfig

ExampleCount

Required. The maximum number of predictions to sample and save to BigQuery during each evaluation interval. This limit overrides example_sample_percentage: even if the service has not sampled enough predictions to fulfill example_sample_perecentage during an interval, it stops sampling predictions when it meets this limit.

Declaration
[JsonProperty("exampleCount")]
public virtual int? ExampleCount { get; set; }
Property Value
Type Description
int?

ExampleSamplePercentage

Required. Fraction of predictions to sample and save to BigQuery during each evaluation interval. For example, 0.1 means 10% of predictions served by your model version get saved to BigQuery.

Declaration
[JsonProperty("exampleSamplePercentage")]
public virtual double? ExampleSamplePercentage { get; set; }
Property Value
Type Description
double?

HumanAnnotationConfig

Optional. Details for human annotation of your data. If you set labelMissingGroundTruth to true for this evaluation job, then you must specify this field. If you plan to provide your own ground truth labels, then omit this field. Note that you must create an Instruction resource before you can specify this field. Provide the name of the instruction resource in the instruction field within this configuration.

Declaration
[JsonProperty("humanAnnotationConfig")]
public virtual GoogleCloudDatalabelingV1beta1HumanAnnotationConfig HumanAnnotationConfig { get; set; }
Property Value
Type Description
GoogleCloudDatalabelingV1beta1HumanAnnotationConfig

ImageClassificationConfig

Specify this field if your model version performs image classification or general classification. annotationSpecSet in this configuration must match EvaluationJob.annotationSpecSet. allowMultiLabel in this configuration must match classificationMetadata.isMultiLabel in input_config.

Declaration
[JsonProperty("imageClassificationConfig")]
public virtual GoogleCloudDatalabelingV1beta1ImageClassificationConfig ImageClassificationConfig { get; set; }
Property Value
Type Description
GoogleCloudDatalabelingV1beta1ImageClassificationConfig

InputConfig

Rquired. Details for the sampled prediction input. Within this configuration, there are requirements for several fields: * dataType must be one of IMAGE, TEXT, or GENERAL_DATA. * annotationType must be one of IMAGE_CLASSIFICATION_ANNOTATION, TEXT_CLASSIFICATION_ANNOTATION, GENERAL_CLASSIFICATION_ANNOTATION, or IMAGE_BOUNDING_BOX_ANNOTATION (image object detection). * If your machine learning model performs classification, you must specify classificationMetadata.isMultiLabel. * You must specify bigquerySource (not gcsSource).

Declaration
[JsonProperty("inputConfig")]
public virtual GoogleCloudDatalabelingV1beta1InputConfig InputConfig { get; set; }
Property Value
Type Description
GoogleCloudDatalabelingV1beta1InputConfig

TextClassificationConfig

Specify this field if your model version performs text classification. annotationSpecSet in this configuration must match EvaluationJob.annotationSpecSet. allowMultiLabel in this configuration must match classificationMetadata.isMultiLabel in input_config.

Declaration
[JsonProperty("textClassificationConfig")]
public virtual GoogleCloudDatalabelingV1beta1TextClassificationConfig TextClassificationConfig { get; set; }
Property Value
Type Description
GoogleCloudDatalabelingV1beta1TextClassificationConfig

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX