Phpml\SupportVectorMachine\SupportVectorMachine::buildTrainCommand PHP Метод

buildTrainCommand() приватный Метод

private buildTrainCommand ( string $trainingSetFileName, string $modelFileName ) : string
$trainingSetFileName string
$modelFileName string
Результат string
    private function buildTrainCommand(string $trainingSetFileName, string $modelFileName) : string
    {
        return sprintf('%ssvm-train%s -s %s -t %s -c %s -n %s -d %s%s -r %s -p %s -m %s -e %s -h %d -b %d %s %s', $this->binPath, $this->getOSExtension(), $this->type, $this->kernel, $this->cost, $this->nu, $this->degree, $this->gamma !== null ? ' -g ' . $this->gamma : '', $this->coef0, $this->epsilon, $this->cacheSize, $this->tolerance, $this->shrinking, $this->probabilityEstimates, escapeshellarg($trainingSetFileName), escapeshellarg($modelFileName));
    }