Interface EvaluationJobAlertConfigOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    EvaluationJobAlertConfig, EvaluationJobAlertConfig.Builder

    public interface EvaluationJobAlertConfigOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getEmail()
      Required.
      com.google.protobuf.ByteString getEmailBytes()
      Required.
      double getMinAcceptableMeanAveragePrecision()
      Required.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getEmail

        String getEmail()
         Required. An email address to send alerts to.
         
        string email = 1;
        Returns:
        The email.
      • getEmailBytes

        com.google.protobuf.ByteString getEmailBytes()
         Required. An email address to send alerts to.
         
        string email = 1;
        Returns:
        The bytes for email.
      • getMinAcceptableMeanAveragePrecision

        double getMinAcceptableMeanAveragePrecision()
         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.
         
        double min_acceptable_mean_average_precision = 2;
        Returns:
        The minAcceptableMeanAveragePrecision.