New methods: setBinPath, setVarPath in SupportVectorMachine (#73)

* new methods: setBinPath, setVarPath

* fix whitespaces and breaklines
This commit is contained in:
Humberto Castelo Branco 2017-05-13 07:58:06 -03:00 committed by Arkadiusz Kondas
parent 7eee6748d2
commit 43f15d2f7e
1 changed files with 22 additions and 2 deletions

View File

@ -9,8 +9,8 @@ use Phpml\Helper\Trainable;
class SupportVectorMachine
{
use Trainable;
/**
/**
* @var int
*/
private $type;
@ -128,6 +128,26 @@ class SupportVectorMachine
$this->varPath = $rootPath.'var'.DIRECTORY_SEPARATOR;
}
/**
* @param string $binPath
*/
public function setBinPath(string $binPath)
{
$this->binPath = $binPath;
return $this;
}
/**
* @param string $varPath
*/
public function setVarPath(string $varPath)
{
$this->varPath = $varPath;
return $this;
}
/**
* @param array $samples
* @param array $targets