MCordingley\Regression\Algorithm\GradientDescent\Schedule\RmsProp::__construct PHP Метод

__construct() публичный Метод

public __construct ( float $rate = 0.9, float $stepSize = 0.001, float $eta = 1.0E-6 )
$rate float
$stepSize float
$eta float
    public function __construct(float $rate = 0.9, float $stepSize = 0.001, float $eta = 1.0E-6)
    {
        $this->stepSize = $stepSize;
        $this->rate = $rate;
        $this->eta = $eta;
    }