MCordingley\Regression\Tests\Algorithm\GradientDescent\Schedule\FixedTest::testStep PHP 메소드

testStep() 공개 메소드

public testStep ( )
    public function testStep()
    {
        $schedule = new Fixed(1.0);
        $schedule->update([1.0]);
        static::assertEquals(1.0, $schedule->step(0));
    }
FixedTest