activationFn = $activationFn; } /** * 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; $this->width = $fanOut; return $fanOut; } /** * Compute a forward pass through the layer. * * @internal * * @param Matrix $input * @return Matrix */ public function forward(Matrix $input) : Matrix { $output = $this->activationFn->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->activationFn->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->input or !$this->output) { throw new RuntimeException('Must perform forward pass before' . ' backpropagating.'); } $input = $this->input; $output = $this->output; $this->input = $this->output = null; return new Deferred( [$this, 'gradient'], [$input, $output, $prevGradient] ); } /** * Calculate the gradient for the previous layer. * * @internal * * @param Matrix $input * @param Matrix $output * @param Deferred $prevGradient * @return Matrix */ public function gradient(Matrix $input, Matrix $output, Deferred $prevGradient) : Matrix { return $this->activationFn->differentiate($input, $output) ->multiply($prevGradient()); } /** * Return the string representation of the object. * * @internal * * @return string */ public function __toString() : string { return "Activation (activation fn: {$this->activationFn})"; } }