We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc8e1b3 commit 6844cf4Copy full SHA for 6844cf4
docs/machine-learning/classification/naive-bayes.md
@@ -24,6 +24,6 @@ To predict sample label use `predict` method. You can provide one sample or arra
24
$classifier->predict([3, 1, 1]);
25
// return 'a'
26
27
-$classifier->predict([[3, 1, 1], [1, 4, 1]);
+$classifier->predict([[3, 1, 1], [1, 4, 1]]);
28
// return ['a', 'b']
29
```
0 commit comments