-
-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathLayer.php
49 lines (43 loc) · 986 Bytes
/
Layer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
namespace Rubix\ML\NeuralNet\Layers;
use Tensor\Matrix;
use Stringable;
interface Layer extends Stringable
{
/**
* The width of the layer. i.e. the number of neurons or computation nodes.
*
* @internal
*
* @return positive-int
*/
public function width() : int;
/**
* 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;
/**
* Feed the input forward to the next layer in the network.
*
* @internal
*
* @param Matrix $input
* @return Matrix
*/
public function forward(Matrix $input) : Matrix;
/**
* Forward pass during inference.
*
* @internal
*
* @param Matrix $input
* @return Matrix
*/
public function infer(Matrix $input) : Matrix;
}