-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathphpstan.neon.dist
51 lines (48 loc) · 1.83 KB
/
phpstan.neon.dist
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
50
51
includes:
- phpstan-baseline.neon
- phpstan-interop.neon
parameters:
level: 6
paths:
- src
ignoreErrors:
-
message: "#Call to an undefined method Rindow\\\\NeuralNetworks\\\\Gradient\\\\Variable::value\\(\\)#"
-
message: "#^Method Rindow\\\\NeuralNetworks\\\\Model\\\\Sequential::call\\(\\)#"
path: src/Model/Sequential.php
-
message: "#^Call to an undefined method Rindow\\\\NeuralNetworks\\\\Model\\\\AbstractModel::call\\(\\)#"
path: src/Model/AbstractModel.php
-
message: "#Call to an undefined method Rindow\\\\NeuralNetworks\\\\Builder\\\\Builder::utils\\(\\)#"
-
message: "#^Function Rindow\\\\Math\\\\Matrix\\\\R not found#"
-
message: "#^Used function Rindow\\\\Math\\\\Matrix\\\\R not found#"
-
message: "#^Call to an undefined method .*Rindow\\\\NeuralNetworks\\\\Layer\\\\Layer::forward\\(\\)#"
-
message: "#^Call to an undefined method .*Rindow\\\\NeuralNetworks\\\\Layer\\\\Layer::inputDtype\\(\\)#"
-
message: "#^Call to an undefined method Rindow\\\\NeuralNetworks\\\\Layer\\\\Layer::_rawCall\\(\\)#"
count: 5
path: src/Layer/MultiHeadAttention.php
-
message: "#^Call to an undefined method Rindow\\\\NeuralNetworks\\\\Layer\\\\Layer::_rawDifferentiate\\(\\)#"
count: 5
path: src/Layer/MultiHeadAttention.php
-
message: "#^Call to an undefined method Rindow\\\\NeuralNetworks\\\\Layer\\\\AbstractAttentionLayer::forward\\(\\)#"
count: 1
path: src/Layer/AbstractAttentionLayer.php
-
message: "#^Expression on left side of \\?\\? is not nullable#"
count: 1
path: src/Gradient/Core/Variable.php
-
message: "#^Call to an undefined method Interop\\\\Polite\\\\Math\\\\Matrix\\\\NDArray::#"
count: 3
path: src/Gradient/Core/MaskedNDArray.php
# -
# message: "#^Call to an undefined method .*Rindow\\\\NeuralNetworks\\\\Model\\\\Model::forward\\(\\)#"