Package com.google.cloud.automl.v1beta1
Class TextSentimentProto.TextSentimentEvaluationMetrics
- java.lang.Object
-
- com.google.protobuf.AbstractMessageLite
-
- com.google.protobuf.AbstractMessage
-
- com.google.protobuf.GeneratedMessageV3
-
- com.google.cloud.automl.v1beta1.TextSentimentProto.TextSentimentEvaluationMetrics
-
- All Implemented Interfaces:
TextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
,com.google.protobuf.Message
,com.google.protobuf.MessageLite
,com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
,Serializable
- Enclosing class:
- TextSentimentProto
public static final class TextSentimentProto.TextSentimentEvaluationMetrics extends com.google.protobuf.GeneratedMessageV3 implements TextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
Model evaluation metrics for text sentiment problems.
Protobuf typegoogle.cloud.automl.v1beta1.TextSentimentEvaluationMetrics
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TextSentimentProto.TextSentimentEvaluationMetrics.Builder
Model evaluation metrics for text sentiment problems.-
Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3
com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageT extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT>,BuilderT extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageT,BuilderT>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageT extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT>>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
-
-
Field Summary
Fields Modifier and Type Field Description static int
ANNOTATION_SPEC_ID_FIELD_NUMBER
static int
CONFUSION_MATRIX_FIELD_NUMBER
static int
F1_SCORE_FIELD_NUMBER
static int
LINEAR_KAPPA_FIELD_NUMBER
static int
MEAN_ABSOLUTE_ERROR_FIELD_NUMBER
static int
MEAN_SQUARED_ERROR_FIELD_NUMBER
static int
PRECISION_FIELD_NUMBER
static int
QUADRATIC_KAPPA_FIELD_NUMBER
static int
RECALL_FIELD_NUMBER
-
Method Summary
-
Methods inherited from class com.google.protobuf.GeneratedMessageV3
canUseUnsafe, computeStringSize, computeStringSizeNoTag, emptyBooleanList, emptyDoubleList, emptyFloatList, emptyIntList, emptyLongList, getAllFields, getDescriptorForType, getField, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof, internalGetMapField, isStringEmpty, makeExtensionsImmutable, makeMutableCopy, mergeFromAndMakeImmutableInternal, mutableCopy, mutableCopy, mutableCopy, mutableCopy, mutableCopy, newBooleanList, newBuilderForType, newDoubleList, newFloatList, newIntList, newLongList, parseDelimitedWithIOException, parseDelimitedWithIOException, parseUnknownField, parseUnknownFieldProto3, parseWithIOException, parseWithIOException, parseWithIOException, parseWithIOException, serializeBooleanMapTo, serializeIntegerMapTo, serializeLongMapTo, serializeStringMapTo, writeReplace, writeString, writeStringNoTag
-
Methods inherited from class com.google.protobuf.AbstractMessage
findInitializationErrors, getInitializationErrorString, hashBoolean, hashEnum, hashEnumList, hashFields, hashLong, toString
-
Methods inherited from class com.google.protobuf.AbstractMessageLite
addAll, addAll, checkByteStringIsUtf8, toByteArray, toByteString, writeDelimitedTo, writeTo
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
Field Detail
-
PRECISION_FIELD_NUMBER
public static final int PRECISION_FIELD_NUMBER
- See Also:
- Constant Field Values
-
RECALL_FIELD_NUMBER
public static final int RECALL_FIELD_NUMBER
- See Also:
- Constant Field Values
-
F1_SCORE_FIELD_NUMBER
public static final int F1_SCORE_FIELD_NUMBER
- See Also:
- Constant Field Values
-
MEAN_ABSOLUTE_ERROR_FIELD_NUMBER
public static final int MEAN_ABSOLUTE_ERROR_FIELD_NUMBER
- See Also:
- Constant Field Values
-
MEAN_SQUARED_ERROR_FIELD_NUMBER
public static final int MEAN_SQUARED_ERROR_FIELD_NUMBER
- See Also:
- Constant Field Values
-
LINEAR_KAPPA_FIELD_NUMBER
public static final int LINEAR_KAPPA_FIELD_NUMBER
- See Also:
- Constant Field Values
-
QUADRATIC_KAPPA_FIELD_NUMBER
public static final int QUADRATIC_KAPPA_FIELD_NUMBER
- See Also:
- Constant Field Values
-
CONFUSION_MATRIX_FIELD_NUMBER
public static final int CONFUSION_MATRIX_FIELD_NUMBER
- See Also:
- Constant Field Values
-
ANNOTATION_SPEC_ID_FIELD_NUMBER
public static final int ANNOTATION_SPEC_ID_FIELD_NUMBER
- See Also:
- Constant Field Values
-
-
Method Detail
-
newInstance
protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
- Overrides:
newInstance
in classcom.google.protobuf.GeneratedMessageV3
-
getDescriptor
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
-
internalGetFieldAccessorTable
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
- Specified by:
internalGetFieldAccessorTable
in classcom.google.protobuf.GeneratedMessageV3
-
getPrecision
public float getPrecision()
Output only. Precision.
float precision = 1;
- Specified by:
getPrecision
in interfaceTextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
- Returns:
- The precision.
-
getRecall
public float getRecall()
Output only. Recall.
float recall = 2;
- Specified by:
getRecall
in interfaceTextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
- Returns:
- The recall.
-
getF1Score
public float getF1Score()
Output only. The harmonic mean of recall and precision.
float f1_score = 3;
- Specified by:
getF1Score
in interfaceTextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
- Returns:
- The f1Score.
-
getMeanAbsoluteError
public float getMeanAbsoluteError()
Output only. Mean absolute error. Only set for the overall model evaluation, not for evaluation of a single annotation spec.
float mean_absolute_error = 4;
- Specified by:
getMeanAbsoluteError
in interfaceTextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
- Returns:
- The meanAbsoluteError.
-
getMeanSquaredError
public float getMeanSquaredError()
Output only. Mean squared error. Only set for the overall model evaluation, not for evaluation of a single annotation spec.
float mean_squared_error = 5;
- Specified by:
getMeanSquaredError
in interfaceTextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
- Returns:
- The meanSquaredError.
-
getLinearKappa
public float getLinearKappa()
Output only. Linear weighted kappa. Only set for the overall model evaluation, not for evaluation of a single annotation spec.
float linear_kappa = 6;
- Specified by:
getLinearKappa
in interfaceTextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
- Returns:
- The linearKappa.
-
getQuadraticKappa
public float getQuadraticKappa()
Output only. Quadratic weighted kappa. Only set for the overall model evaluation, not for evaluation of a single annotation spec.
float quadratic_kappa = 7;
- Specified by:
getQuadraticKappa
in interfaceTextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
- Returns:
- The quadraticKappa.
-
hasConfusionMatrix
public boolean hasConfusionMatrix()
Output only. Confusion matrix of the evaluation. Only set for the overall model evaluation, not for evaluation of a single annotation spec.
.google.cloud.automl.v1beta1.ClassificationEvaluationMetrics.ConfusionMatrix confusion_matrix = 8;
- Specified by:
hasConfusionMatrix
in interfaceTextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
- Returns:
- Whether the confusionMatrix field is set.
-
getConfusionMatrix
public ClassificationProto.ClassificationEvaluationMetrics.ConfusionMatrix getConfusionMatrix()
Output only. Confusion matrix of the evaluation. Only set for the overall model evaluation, not for evaluation of a single annotation spec.
.google.cloud.automl.v1beta1.ClassificationEvaluationMetrics.ConfusionMatrix confusion_matrix = 8;
- Specified by:
getConfusionMatrix
in interfaceTextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
- Returns:
- The confusionMatrix.
-
getConfusionMatrixOrBuilder
public ClassificationProto.ClassificationEvaluationMetrics.ConfusionMatrixOrBuilder getConfusionMatrixOrBuilder()
Output only. Confusion matrix of the evaluation. Only set for the overall model evaluation, not for evaluation of a single annotation spec.
.google.cloud.automl.v1beta1.ClassificationEvaluationMetrics.ConfusionMatrix confusion_matrix = 8;
- Specified by:
getConfusionMatrixOrBuilder
in interfaceTextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
-
getAnnotationSpecIdList
@Deprecated public com.google.protobuf.ProtocolStringList getAnnotationSpecIdList()
Deprecated.google.cloud.automl.v1beta1.TextSentimentEvaluationMetrics.annotation_spec_id is deprecated. See google/cloud/automl/v1beta1/text_sentiment.proto;l=77Output only. The annotation spec ids used for this evaluation. Deprecated .
repeated string annotation_spec_id = 9 [deprecated = true];
- Specified by:
getAnnotationSpecIdList
in interfaceTextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
- Returns:
- A list containing the annotationSpecId.
-
getAnnotationSpecIdCount
@Deprecated public int getAnnotationSpecIdCount()
Deprecated.google.cloud.automl.v1beta1.TextSentimentEvaluationMetrics.annotation_spec_id is deprecated. See google/cloud/automl/v1beta1/text_sentiment.proto;l=77Output only. The annotation spec ids used for this evaluation. Deprecated .
repeated string annotation_spec_id = 9 [deprecated = true];
- Specified by:
getAnnotationSpecIdCount
in interfaceTextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
- Returns:
- The count of annotationSpecId.
-
getAnnotationSpecId
@Deprecated public String getAnnotationSpecId(int index)
Deprecated.google.cloud.automl.v1beta1.TextSentimentEvaluationMetrics.annotation_spec_id is deprecated. See google/cloud/automl/v1beta1/text_sentiment.proto;l=77Output only. The annotation spec ids used for this evaluation. Deprecated .
repeated string annotation_spec_id = 9 [deprecated = true];
- Specified by:
getAnnotationSpecId
in interfaceTextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
- Parameters:
index
- The index of the element to return.- Returns:
- The annotationSpecId at the given index.
-
getAnnotationSpecIdBytes
@Deprecated public com.google.protobuf.ByteString getAnnotationSpecIdBytes(int index)
Deprecated.google.cloud.automl.v1beta1.TextSentimentEvaluationMetrics.annotation_spec_id is deprecated. See google/cloud/automl/v1beta1/text_sentiment.proto;l=77Output only. The annotation spec ids used for this evaluation. Deprecated .
repeated string annotation_spec_id = 9 [deprecated = true];
- Specified by:
getAnnotationSpecIdBytes
in interfaceTextSentimentProto.TextSentimentEvaluationMetricsOrBuilder
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the annotationSpecId at the given index.
-
isInitialized
public final boolean isInitialized()
- Specified by:
isInitialized
in interfacecom.google.protobuf.MessageLiteOrBuilder
- Overrides:
isInitialized
in classcom.google.protobuf.GeneratedMessageV3
-
writeTo
public void writeTo(com.google.protobuf.CodedOutputStream output) throws IOException
- Specified by:
writeTo
in interfacecom.google.protobuf.MessageLite
- Overrides:
writeTo
in classcom.google.protobuf.GeneratedMessageV3
- Throws:
IOException
-
getSerializedSize
public int getSerializedSize()
- Specified by:
getSerializedSize
in interfacecom.google.protobuf.MessageLite
- Overrides:
getSerializedSize
in classcom.google.protobuf.GeneratedMessageV3
-
equals
public boolean equals(Object obj)
- Specified by:
equals
in interfacecom.google.protobuf.Message
- Overrides:
equals
in classcom.google.protobuf.AbstractMessage
-
hashCode
public int hashCode()
- Specified by:
hashCode
in interfacecom.google.protobuf.Message
- Overrides:
hashCode
in classcom.google.protobuf.AbstractMessage
-
parseFrom
public static TextSentimentProto.TextSentimentEvaluationMetrics parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
- Throws:
com.google.protobuf.InvalidProtocolBufferException
-
parseFrom
public static TextSentimentProto.TextSentimentEvaluationMetrics parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
- Throws:
com.google.protobuf.InvalidProtocolBufferException
-
parseFrom
public static TextSentimentProto.TextSentimentEvaluationMetrics parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
- Throws:
com.google.protobuf.InvalidProtocolBufferException
-
parseFrom
public static TextSentimentProto.TextSentimentEvaluationMetrics parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
- Throws:
com.google.protobuf.InvalidProtocolBufferException
-
parseFrom
public static TextSentimentProto.TextSentimentEvaluationMetrics parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
- Throws:
com.google.protobuf.InvalidProtocolBufferException
-
parseFrom
public static TextSentimentProto.TextSentimentEvaluationMetrics parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
- Throws:
com.google.protobuf.InvalidProtocolBufferException
-
parseFrom
public static TextSentimentProto.TextSentimentEvaluationMetrics parseFrom(InputStream input) throws IOException
- Throws:
IOException
-
parseFrom
public static TextSentimentProto.TextSentimentEvaluationMetrics parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
- Throws:
IOException
-
parseDelimitedFrom
public static TextSentimentProto.TextSentimentEvaluationMetrics parseDelimitedFrom(InputStream input) throws IOException
- Throws:
IOException
-
parseDelimitedFrom
public static TextSentimentProto.TextSentimentEvaluationMetrics parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
- Throws:
IOException
-
parseFrom
public static TextSentimentProto.TextSentimentEvaluationMetrics parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
- Throws:
IOException
-
parseFrom
public static TextSentimentProto.TextSentimentEvaluationMetrics parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
- Throws:
IOException
-
newBuilderForType
public TextSentimentProto.TextSentimentEvaluationMetrics.Builder newBuilderForType()
- Specified by:
newBuilderForType
in interfacecom.google.protobuf.Message
- Specified by:
newBuilderForType
in interfacecom.google.protobuf.MessageLite
-
newBuilder
public static TextSentimentProto.TextSentimentEvaluationMetrics.Builder newBuilder()
-
newBuilder
public static TextSentimentProto.TextSentimentEvaluationMetrics.Builder newBuilder(TextSentimentProto.TextSentimentEvaluationMetrics prototype)
-
toBuilder
public TextSentimentProto.TextSentimentEvaluationMetrics.Builder toBuilder()
- Specified by:
toBuilder
in interfacecom.google.protobuf.Message
- Specified by:
toBuilder
in interfacecom.google.protobuf.MessageLite
-
newBuilderForType
protected TextSentimentProto.TextSentimentEvaluationMetrics.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
- Specified by:
newBuilderForType
in classcom.google.protobuf.GeneratedMessageV3
-
getDefaultInstance
public static TextSentimentProto.TextSentimentEvaluationMetrics getDefaultInstance()
-
parser
public static com.google.protobuf.Parser<TextSentimentProto.TextSentimentEvaluationMetrics> parser()
-
getParserForType
public com.google.protobuf.Parser<TextSentimentProto.TextSentimentEvaluationMetrics> getParserForType()
- Specified by:
getParserForType
in interfacecom.google.protobuf.Message
- Specified by:
getParserForType
in interfacecom.google.protobuf.MessageLite
- Overrides:
getParserForType
in classcom.google.protobuf.GeneratedMessageV3
-
getDefaultInstanceForType
public TextSentimentProto.TextSentimentEvaluationMetrics getDefaultInstanceForType()
- Specified by:
getDefaultInstanceForType
in interfacecom.google.protobuf.MessageLiteOrBuilder
- Specified by:
getDefaultInstanceForType
in interfacecom.google.protobuf.MessageOrBuilder
-
-