RandomForestClassifier constructor

RandomForestClassifier({
  1. int nEstimators = 10,
  2. int maxDepth = 5,
  3. double sampleRatio = 0.8,
})

Implementation

RandomForestClassifier({
  this.nEstimators = 10,
  this.maxDepth = 5,
  this.sampleRatio = 0.8,
});