DatasetStats constructor

DatasetStats({
  1. int tuningDatasetExampleCount = 0,
  2. int totalTuningCharacterCount = 0,
  3. int totalBillableCharacterCount = 0,
  4. int tuningStepCount = 0,
  5. DatasetDistribution? userInputTokenDistribution,
  6. DatasetDistribution? userOutputTokenDistribution,
  7. DatasetDistribution? userMessagePerExampleDistribution,
  8. List<Content> userDatasetExamples = const [],
})

Implementation

DatasetStats({
  this.tuningDatasetExampleCount = 0,
  this.totalTuningCharacterCount = 0,
  this.totalBillableCharacterCount = 0,
  this.tuningStepCount = 0,
  this.userInputTokenDistribution,
  this.userOutputTokenDistribution,
  this.userMessagePerExampleDistribution,
  this.userDatasetExamples = const [],
}) : super(fullyQualifiedName);