MCordingley\Regression\Algorithm\GradientDescent\Schedule\Adagrad::__construct PHP 메소드

__construct() 공개 메소드

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