MCordingley\Regression\Algorithm\GradientDescent\Schedule\Adagrad::__construct PHP Method

__construct() public method

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;
    }