AggregationResult constructor

AggregationResult({
  1. PointwiseMetricResult? pointwiseMetricResult,
  2. PairwiseMetricResult? pairwiseMetricResult,
  3. ExactMatchMetricValue? exactMatchMetricValue,
  4. BleuMetricValue? bleuMetricValue,
  5. RougeMetricValue? rougeMetricValue,
  6. Metric_AggregationMetric aggregationMetric = Metric_AggregationMetric.$default,
})

Implementation

AggregationResult({
  this.pointwiseMetricResult,
  this.pairwiseMetricResult,
  this.exactMatchMetricValue,
  this.bleuMetricValue,
  this.rougeMetricValue,
  this.aggregationMetric = Metric_AggregationMetric.$default,
}) : super(fullyQualifiedName);