kernel = new Sigmoidal(1e-3); } /** * @test */ public function build() : void { $this->assertInstanceOf(Sigmoidal::class, $this->kernel); $this->assertInstanceOf(Kernel::class, $this->kernel); } /** * @test */ public function options() : void { $options = [ 102 => 3, 201 => 1e-3, 205 => 0.0, ]; $this->assertEquals($options, $this->kernel->options()); } }