com.clarifai.grpc.api.EvalTestSetEntryOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/resources.proto
package com.clarifai.grpc.api;
public interface EvalTestSetEntryOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.EvalTestSetEntry)
com.google.protobuf.MessageOrBuilder {
/**
*
* the input information
*
*
* .clarifai.api.Input input = 6;
* @return Whether the input field is set.
*/
boolean hasInput();
/**
*
* the input information
*
*
* .clarifai.api.Input input = 6;
* @return The input.
*/
com.clarifai.grpc.api.Input getInput();
/**
*
* the input information
*
*
* .clarifai.api.Input input = 6;
*/
com.clarifai.grpc.api.InputOrBuilder getInputOrBuilder();
/**
* repeated .clarifai.api.Concept predicted_concepts = 3;
*/
java.util.List
getPredictedConceptsList();
/**
* repeated .clarifai.api.Concept predicted_concepts = 3;
*/
com.clarifai.grpc.api.Concept getPredictedConcepts(int index);
/**
* repeated .clarifai.api.Concept predicted_concepts = 3;
*/
int getPredictedConceptsCount();
/**
* repeated .clarifai.api.Concept predicted_concepts = 3;
*/
java.util.List extends com.clarifai.grpc.api.ConceptOrBuilder>
getPredictedConceptsOrBuilderList();
/**
* repeated .clarifai.api.Concept predicted_concepts = 3;
*/
com.clarifai.grpc.api.ConceptOrBuilder getPredictedConceptsOrBuilder(
int index);
/**
*
* All the ground truth concepts will be show on the top level
*
*
* repeated .clarifai.api.Concept ground_truth_concepts = 4;
*/
java.util.List
getGroundTruthConceptsList();
/**
*
* All the ground truth concepts will be show on the top level
*
*
* repeated .clarifai.api.Concept ground_truth_concepts = 4;
*/
com.clarifai.grpc.api.Concept getGroundTruthConcepts(int index);
/**
*
* All the ground truth concepts will be show on the top level
*
*
* repeated .clarifai.api.Concept ground_truth_concepts = 4;
*/
int getGroundTruthConceptsCount();
/**
*
* All the ground truth concepts will be show on the top level
*
*
* repeated .clarifai.api.Concept ground_truth_concepts = 4;
*/
java.util.List extends com.clarifai.grpc.api.ConceptOrBuilder>
getGroundTruthConceptsOrBuilderList();
/**
*
* All the ground truth concepts will be show on the top level
*
*
* repeated .clarifai.api.Concept ground_truth_concepts = 4;
*/
com.clarifai.grpc.api.ConceptOrBuilder getGroundTruthConceptsOrBuilder(
int index);
/**
*
* Only region-based/frame-based app contains this annotation
* Each annotation only contains one region
* And the concepts is in ground_truth_concepts instead of this annotation
*
*
* .clarifai.api.Annotation annotation = 5;
* @return Whether the annotation field is set.
*/
boolean hasAnnotation();
/**
*
* Only region-based/frame-based app contains this annotation
* Each annotation only contains one region
* And the concepts is in ground_truth_concepts instead of this annotation
*
*
* .clarifai.api.Annotation annotation = 5;
* @return The annotation.
*/
com.clarifai.grpc.api.Annotation getAnnotation();
/**
*
* Only region-based/frame-based app contains this annotation
* Each annotation only contains one region
* And the concepts is in ground_truth_concepts instead of this annotation
*
*
* .clarifai.api.Annotation annotation = 5;
*/
com.clarifai.grpc.api.AnnotationOrBuilder getAnnotationOrBuilder();
}