Attribution constructor

Attribution({
  1. double baselineOutputValue = 0,
  2. double instanceOutputValue = 0,
  3. Value? featureAttributions,
  4. List<int> outputIndex = const [],
  5. String outputDisplayName = '',
  6. double approximationError = 0,
  7. String outputName = '',
})

Implementation

Attribution({
  this.baselineOutputValue = 0,
  this.instanceOutputValue = 0,
  this.featureAttributions,
  this.outputIndex = const [],
  this.outputDisplayName = '',
  this.approximationError = 0,
  this.outputName = '',
}) : super(fullyQualifiedName);