Fixes after new php-cs-fixer v2.0

This commit is contained in:
Arkadiusz Kondas 2016-12-12 18:11:57 +01:00
parent da56ce4b3a
commit df28656d0d
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class SVR extends SupportVectorMachine implements Regression
*/
public function __construct(
int $kernel = Kernel::RBF, int $degree = 3, float $epsilon = 0.1, float $cost = 1.0,
float $gamma = null, float $coef0 = 0.0, float $tolerance = 0.001,
float $gamma = null, float $coef0 = 0.0, float $tolerance = 0.001,
int $cacheSize = 100, bool $shrinking = true
) {
parent::__construct(Type::EPSILON_SVR, $kernel, $cost, 0.5, $degree, $gamma, $coef0, $epsilon, $tolerance, $cacheSize, $shrinking, false);