1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Author: Andreas Tille <tille@debian.org>
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=122483
Last-Update: 2017-04-20
Description: Fix spelling in man page
--- a/lib/Algorithm/SVM.pm
+++ b/lib/Algorithm/SVM.pm
@@ -104,10 +104,10 @@ Algorithm::SVM - Perl bindings for the l
# Load a saved model from a file.
$svm->load('new-sample.model');
- # Retreive the number of classes.
+ # Retrieve the number of classes.
$num = $svm->getNRClass();
- # Retreive labels for dataset classes
+ # Retrieve labels for dataset classes
(@labels) = $svm->getLabels();
# Probabilty for regression models, see below for details
|