1 | <?php |
||
9 | class Accuracy |
||
10 | { |
||
11 | /** |
||
12 | * @param array $actualLabels |
||
13 | * @param array $predictedLabels |
||
14 | * @param bool $normalize |
||
15 | * |
||
16 | * @return float|int |
||
17 | * |
||
18 | * @throws InvalidArgumentException |
||
19 | */ |
||
20 | public static function score(array $actualLabels, array $predictedLabels, bool $normalize = true) |
||
39 | } |
||
40 |