Package org.mlflow.api.proto
Interface Service.CalculateTraceFilterCorrelation.ResponseOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.CalculateTraceFilterCorrelation.Response,Service.CalculateTraceFilterCorrelation.Response.Builder
- Enclosing class:
- Service.CalculateTraceFilterCorrelation
public static interface Service.CalculateTraceFilterCorrelation.ResponseOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionintNumber of traces matching the first filter.intNumber of traces matching the second filter.intNumber of traces matching both filters.doublegetNpmi()Normalized Pointwise Mutual Information score (-1 to 1).doubleSmoothed NPMI value with Jeffreys prior for robustness.intTotal number of traces in the experiments.booleanNumber of traces matching the first filter.booleanNumber of traces matching the second filter.booleanNumber of traces matching both filters.booleanhasNpmi()Normalized Pointwise Mutual Information score (-1 to 1).booleanSmoothed NPMI value with Jeffreys prior for robustness.booleanTotal number of traces in the experiments.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasNpmi
boolean hasNpmi()Normalized Pointwise Mutual Information score (-1 to 1).
optional double npmi = 1;- Returns:
- Whether the npmi field is set.
-
getNpmi
double getNpmi()Normalized Pointwise Mutual Information score (-1 to 1).
optional double npmi = 1;- Returns:
- The npmi.
-
hasNpmiSmoothed
boolean hasNpmiSmoothed()Smoothed NPMI value with Jeffreys prior for robustness.
optional double npmi_smoothed = 2;- Returns:
- Whether the npmiSmoothed field is set.
-
getNpmiSmoothed
double getNpmiSmoothed()Smoothed NPMI value with Jeffreys prior for robustness.
optional double npmi_smoothed = 2;- Returns:
- The npmiSmoothed.
-
hasFilter1Count
boolean hasFilter1Count()Number of traces matching the first filter.
optional int32 filter1_count = 3;- Returns:
- Whether the filter1Count field is set.
-
getFilter1Count
int getFilter1Count()Number of traces matching the first filter.
optional int32 filter1_count = 3;- Returns:
- The filter1Count.
-
hasFilter2Count
boolean hasFilter2Count()Number of traces matching the second filter.
optional int32 filter2_count = 4;- Returns:
- Whether the filter2Count field is set.
-
getFilter2Count
int getFilter2Count()Number of traces matching the second filter.
optional int32 filter2_count = 4;- Returns:
- The filter2Count.
-
hasJointCount
boolean hasJointCount()Number of traces matching both filters.
optional int32 joint_count = 5;- Returns:
- Whether the jointCount field is set.
-
getJointCount
int getJointCount()Number of traces matching both filters.
optional int32 joint_count = 5;- Returns:
- The jointCount.
-
hasTotalCount
boolean hasTotalCount()Total number of traces in the experiments.
optional int32 total_count = 6;- Returns:
- Whether the totalCount field is set.
-
getTotalCount
int getTotalCount()Total number of traces in the experiments.
optional int32 total_count = 6;- Returns:
- The totalCount.
-