initializer = $initializer ?? new Constant(1.0); $this->sigmoid = new Sigmoid(); } /** * Return the width of the layer. * * @internal * * @throws RuntimeException * @return positive-int */ public function width() : int { if ($this->width === null) { throw new RuntimeException('Layer has not been initialized.'); } return $this->width; } /** * Initialize the layer with the fan in from the previous layer and return * the fan out for this layer. * * @internal * * @param positive-int $fanIn * @return positive-int */ public function initialize(int $fanIn) : int { $fanOut = $fanIn; $beta = $this->initializer->initialize(1, $fanOut)->columnAsVector(0); $this->width = $fanOut; $this->beta = new Parameter($beta); return $fanOut; } /** * Compute a forward pass through the layer. * * @internal * * @param Matrix $input * @return Matrix */ public function forward(Matrix $input) : Matrix { $output = $this->activate($input); $this->input = $input; $this->output = $output; return $output; } /** * Compute an inferential pass through the layer. * * @internal * * @param Matrix $input * @return Matrix */ public function infer(Matrix $input) : Matrix { return $this->activate($input); } /** * Calculate the gradient and update the parameters of the layer. * * @internal * * @param Deferred $prevGradient * @param Optimizer $optimizer * @throws RuntimeException * @return Deferred */ public function back(Deferred $prevGradient, Optimizer $optimizer) : Deferred { if (!$this->beta) { throw new RuntimeException('Layer has not been initialized.'); } if (!$this->input or !$this->output) { throw new RuntimeException('Must perform forward pass' . ' before backpropagating.'); } $dOut = $prevGradient(); $dIn = $this->input; $dBeta = $dOut->multiply($dIn)->sum(); $this->beta->update($dBeta, $optimizer); $input = $this->input; $output = $this->output; $this->input = $this->output = null; return new Deferred([$this, 'gradient'], [$input, $output, $dOut]); } /** * Calculate the gradient for the previous layer. * * @internal * * @param Matrix $input * @param Matrix $output * @param Matrix $dOut * @return Matrix */ public function gradient($input, $output, $dOut) : Matrix { return $this->differentiate($input, $output) ->multiply($dOut); } /** * Return the parameters of the layer. * * @internal * * @throws \RuntimeException * @return Generator */ public function parameters() : Generator { if (!$this->beta) { throw new RuntimeException('Layer has not been initialized.'); } yield 'beta' => $this->beta; } /** * Restore the parameters in the layer from an associative array. * * @internal * * @param Parameter[] $parameters */ public function restore(array $parameters) : void { $this->beta = $parameters['beta']; } /** * Compute the Swish activation function and return a matrix. * * @param Matrix $input * @throws RuntimeException * @return Matrix */ protected function activate(Matrix $input) : Matrix { if (!$this->beta) { throw new RuntimeException('Layer has not been initialized.'); } $zHat = $input->multiply($this->beta->param()); return $this->sigmoid->activate($zHat) ->multiply($input); } /** * Calculate the derivative of the activation function at a given output. * * @param Matrix $input * @param Matrix $output * @throws RuntimeException * @return Matrix */ protected function differentiate(Matrix $input, Matrix $output) : Matrix { if (!$this->beta) { throw new RuntimeException('Layer has not been initialized.'); } $ones = Matrix::ones(...$output->shape()); return $output->divide($input) ->multiply($ones->subtract($output)) ->add($output); } /** * Return the string representation of the object. * * @internal * * @return string */ public function __toString() : string { return "Swish (initializer: {$this->initializer})"; } }