Phpml\NeuralNetwork\Training\Backpropagation::__construct PHP Method

__construct() public method

public __construct ( Phpml\NeuralNetwork\Network $network, integer $theta = 1 )
$network Phpml\NeuralNetwork\Network
$theta integer
    public function __construct(Network $network, int $theta = 1)
    {
        $this->network = $network;
        $this->theta = $theta;
    }