Show / Hide Table of Contents

Class EvaluationJobAlertConfig

Provides details for how an evaluation job sends email alerts based on the results of a run.

Inheritance
System.Object
EvaluationJobAlertConfig
Implements
IMessage<EvaluationJobAlertConfig>
System.IEquatable<EvaluationJobAlertConfig>
IDeepCloneable<EvaluationJobAlertConfig>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DataLabeling.V1Beta1
Assembly: Google.Cloud.DataLabeling.V1Beta1.dll
Syntax
public sealed class EvaluationJobAlertConfig : IMessage<EvaluationJobAlertConfig>, IEquatable<EvaluationJobAlertConfig>, IDeepCloneable<EvaluationJobAlertConfig>, IBufferMessage, IMessage

Constructors

EvaluationJobAlertConfig()

Declaration
public EvaluationJobAlertConfig()

EvaluationJobAlertConfig(EvaluationJobAlertConfig)

Declaration
public EvaluationJobAlertConfig(EvaluationJobAlertConfig other)
Parameters
Type Name Description
EvaluationJobAlertConfig other

Properties

Email

Required. An email address to send alerts to.

Declaration
public string Email { get; set; }
Property Value
Type Description
System.String

MinAcceptableMeanAveragePrecision

Required. A number between 0 and 1 that describes a minimum mean average precision threshold. When the evaluation job runs, if it calculates that your model version's predictions from the recent interval have [meanAveragePrecision][google.cloud.datalabeling.v1beta1.PrCurve.mean_average_precision] below this threshold, then it sends an alert to your specified email.

Declaration
public double MinAcceptableMeanAveragePrecision { get; set; }
Property Value
Type Description
System.Double
Back to top