ConfigFineTunes constructor

ConfigFineTunes({
  1. String model = 'curie',
  2. int nEpochs = 4,
  3. int? batchSize,
  4. double? learningRateMultiplier,
  5. double promptLossWeight = 0.01,
  6. bool computeClassificationMetrics = false,
  7. int? classificationNClasses,
  8. int? classificationPositiveClass,
  9. String? suffix,
})

Implementation

ConfigFineTunes({
  this.model = 'curie',
  this.nEpochs = 4,
  this.batchSize,
  this.learningRateMultiplier,
  this.promptLossWeight = 0.01,
  this.computeClassificationMetrics = false,
  this.classificationNClasses,
  this.classificationPositiveClass,
  this.suffix,
});