/*
 * Copyright 2020 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/datalabeling/v1beta1/evaluation.proto

package com.google.cloud.datalabeling.v1beta1;

public interface ClassificationMetricsOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.datalabeling.v1beta1.ClassificationMetrics)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * Precision-recall curve based on ground truth labels, predicted labels, and
   * scores for the predicted labels.
   * </pre>
   *
   * <code>.google.cloud.datalabeling.v1beta1.PrCurve pr_curve = 1;</code>
   *
   * @return Whether the prCurve field is set.
   */
  boolean hasPrCurve();
  /**
   *
   *
   * <pre>
   * Precision-recall curve based on ground truth labels, predicted labels, and
   * scores for the predicted labels.
   * </pre>
   *
   * <code>.google.cloud.datalabeling.v1beta1.PrCurve pr_curve = 1;</code>
   *
   * @return The prCurve.
   */
  com.google.cloud.datalabeling.v1beta1.PrCurve getPrCurve();
  /**
   *
   *
   * <pre>
   * Precision-recall curve based on ground truth labels, predicted labels, and
   * scores for the predicted labels.
   * </pre>
   *
   * <code>.google.cloud.datalabeling.v1beta1.PrCurve pr_curve = 1;</code>
   */
  com.google.cloud.datalabeling.v1beta1.PrCurveOrBuilder getPrCurveOrBuilder();

  /**
   *
   *
   * <pre>
   * Confusion matrix of predicted labels vs. ground truth labels.
   * </pre>
   *
   * <code>.google.cloud.datalabeling.v1beta1.ConfusionMatrix confusion_matrix = 2;</code>
   *
   * @return Whether the confusionMatrix field is set.
   */
  boolean hasConfusionMatrix();
  /**
   *
   *
   * <pre>
   * Confusion matrix of predicted labels vs. ground truth labels.
   * </pre>
   *
   * <code>.google.cloud.datalabeling.v1beta1.ConfusionMatrix confusion_matrix = 2;</code>
   *
   * @return The confusionMatrix.
   */
  com.google.cloud.datalabeling.v1beta1.ConfusionMatrix getConfusionMatrix();
  /**
   *
   *
   * <pre>
   * Confusion matrix of predicted labels vs. ground truth labels.
   * </pre>
   *
   * <code>.google.cloud.datalabeling.v1beta1.ConfusionMatrix confusion_matrix = 2;</code>
   */
  com.google.cloud.datalabeling.v1beta1.ConfusionMatrixOrBuilder getConfusionMatrixOrBuilder();
}
