Phpml\Classification\SVC::__construct PHP Method

__construct() public method

public __construct ( integer $kernel = Kernel::LINEAR, float $cost = 1, integer $degree = 3, float $gamma = null, float $coef0, float $tolerance = 0.001, integer $cacheSize = 100, boolean $shrinking = true, boolean $probabilityEstimates = false )
$kernel integer
$cost float
$degree integer
$gamma float
$coef0 float
$tolerance float
$cacheSize integer
$shrinking boolean
$probabilityEstimates boolean
    public function __construct(int $kernel = Kernel::LINEAR, float $cost = 1.0, int $degree = 3, float $gamma = null, float $coef0 = 0.0, float $tolerance = 0.001, int $cacheSize = 100, bool $shrinking = true, bool $probabilityEstimates = false)
    {
        parent::__construct(Type::C_SVC, $kernel, $cost, 0.5, $degree, $gamma, $coef0, 0.1, $tolerance, $cacheSize, $shrinking, $probabilityEstimates);
    }