update() public method

public update ( array $gradient )
$gradient array
Ejemplo n.º 1
0
 public function testStep()
 {
     $schedule = new Fixed(1.0);
     $schedule->update([1.0]);
     static::assertEquals(1.0, $schedule->step(0));
 }