diff --git a/src/Phpml/Classification/SupportVectorMachine.php b/src/Phpml/Classification/SupportVectorMachine.php index 3a811c1..5eb84e6 100644 --- a/src/Phpml/Classification/SupportVectorMachine.php +++ b/src/Phpml/Classification/SupportVectorMachine.php @@ -53,6 +53,8 @@ class SupportVectorMachine implements Classifier $this->C = $C; $this->tolerance = $tolerance; $this->upperBound = $upperBound; + + $this->binPath = realpath(implode(DIRECTORY_SEPARATOR, array(dirname(__FILE__), '..', '..', '..', 'bin'))) . DIRECTORY_SEPARATOR; } /**