AdaptiveRotationStrategy constructor

AdaptiveRotationStrategy({
  1. double learningRate = 0.1,
  2. double explorationRate = 0.2,
  3. double minWeight = 0.1,
  4. double maxWeight = 10.0,
  5. double decayFactor = 0.99,
})

Creates a new AdaptiveRotationStrategy

Implementation

AdaptiveRotationStrategy({
  this.learningRate = 0.1,
  this.explorationRate = 0.2,
  this.minWeight = 0.1,
  this.maxWeight = 10.0,
  this.decayFactor = 0.99,
});