php-ml/src/SupportVectorMachine/Type.php
2018-02-10 12:08:58 +01:00

34 lines
452 B
PHP

<?php
declare(strict_types=1);
namespace Phpml\SupportVectorMachine;
abstract class Type
{
/**
* classification.
*/
public const C_SVC = 0;
/**
* classification.
*/
public const NU_SVC = 1;
/**
* distribution estimation.
*/
public const ONE_CLASS_SVM = 2;
/**
* regression.
*/
public const EPSILON_SVR = 3;
/**
* regression.
*/
public const NU_SVR = 4;
}