SVC   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 2
dl 0
loc 14
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 12 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Phpml\Classification;
6
7
use Phpml\SupportVectorMachine\Kernel;
8
use Phpml\SupportVectorMachine\SupportVectorMachine;
9
use Phpml\SupportVectorMachine\Type;
10
11
class SVC extends SupportVectorMachine implements Classifier
12
{
13
    public function __construct(
14
        int $kernel = Kernel::RBF,
15
        float $cost = 1.0,
16
        int $degree = 3,
17
        ?float $gamma = null,
18
        float $coef0 = 0.0,
19
        float $tolerance = 0.001,
20
        int $cacheSize = 100,
21
        bool $shrinking = true,
22
        bool $probabilityEstimates = false
23
    ) {
24
        parent::__construct(Type::C_SVC, $kernel, $cost, 0.5, $degree, $gamma, $coef0, 0.1, $tolerance, $cacheSize, $shrinking, $probabilityEstimates);
25
    }
26
}
27