Interface Experiment.Result.VersionMetricsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Experiment.Result.VersionMetrics
,Experiment.Result.VersionMetrics.Builder
- Enclosing class:
- Experiment.Result
public static interface Experiment.Result.VersionMetricsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Experiment.Result.Metric
getMetrics(int index)
The metrics and corresponding confidence intervals in the inference result.int
getMetricsCount()
The metrics and corresponding confidence intervals in the inference result.List<Experiment.Result.Metric>
getMetricsList()
The metrics and corresponding confidence intervals in the inference result.Experiment.Result.MetricOrBuilder
getMetricsOrBuilder(int index)
The metrics and corresponding confidence intervals in the inference result.List<? extends Experiment.Result.MetricOrBuilder>
getMetricsOrBuilderList()
The metrics and corresponding confidence intervals in the inference result.int
getSessionCount()
Number of sessions that were allocated to this version.String
getVersion()
The name of the flow [Version][google.cloud.dialogflow.cx.v3beta1.Version].com.google.protobuf.ByteString
getVersionBytes()
The name of the flow [Version][google.cloud.dialogflow.cx.v3beta1.Version].-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVersion
String getVersion()
The name of the flow [Version][google.cloud.dialogflow.cx.v3beta1.Version]. Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/versions/<Version ID>`.
string version = 1 [(.google.api.resource_reference) = { ... }
- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()
The name of the flow [Version][google.cloud.dialogflow.cx.v3beta1.Version]. Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow ID>/versions/<Version ID>`.
string version = 1 [(.google.api.resource_reference) = { ... }
- Returns:
- The bytes for version.
-
getMetricsList
List<Experiment.Result.Metric> getMetricsList()
The metrics and corresponding confidence intervals in the inference result.
repeated .google.cloud.dialogflow.cx.v3beta1.Experiment.Result.Metric metrics = 2;
-
getMetrics
Experiment.Result.Metric getMetrics(int index)
The metrics and corresponding confidence intervals in the inference result.
repeated .google.cloud.dialogflow.cx.v3beta1.Experiment.Result.Metric metrics = 2;
-
getMetricsCount
int getMetricsCount()
The metrics and corresponding confidence intervals in the inference result.
repeated .google.cloud.dialogflow.cx.v3beta1.Experiment.Result.Metric metrics = 2;
-
getMetricsOrBuilderList
List<? extends Experiment.Result.MetricOrBuilder> getMetricsOrBuilderList()
The metrics and corresponding confidence intervals in the inference result.
repeated .google.cloud.dialogflow.cx.v3beta1.Experiment.Result.Metric metrics = 2;
-
getMetricsOrBuilder
Experiment.Result.MetricOrBuilder getMetricsOrBuilder(int index)
The metrics and corresponding confidence intervals in the inference result.
repeated .google.cloud.dialogflow.cx.v3beta1.Experiment.Result.Metric metrics = 2;
-
getSessionCount
int getSessionCount()
Number of sessions that were allocated to this version.
int32 session_count = 3;
- Returns:
- The sessionCount.
-
-