mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-11 16:15:50 +00:00
560 B
560 B
Accuracy
Class for calculate classifier accuracy.
Score
To calculate classifier accuracy score use score
static method. Parametrs:
- $actualLabels - (array) true sample labels
- $predictedLabels - (array) predicted labels (e.x. from test group)
- $normalize - (bool) normalize or not the result (default: true)
Example
$actualLabels = ['a', 'b', 'a', 'b'];
$predictedLabels = ['a', 'a', 'a', 'b'];
Accuracy::score($actualLabels, $predictedLabels);
// return 0.75
Accuracy::score($actualLabels, $predictedLabels, false);
// return 3