__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
namespace Phpml\Classification;
use Phpml\SupportVectorMachine\Kernel;
use Phpml\SupportVectorMachine\SupportVectorMachine;
use Phpml\SupportVectorMachine\Type;
class SVC extends SupportVectorMachine implements Classifier
{
public function __construct(
int $kernel = Kernel::RBF,
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);
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| DecisionTree | Folder | 0777 |
|
|
| Ensemble | Folder | 0777 |
|
|
| Linear | Folder | 0777 |
|
|
| Classifier.php | File | 131 B | 0777 |
|
| DecisionTree.php | File | 14.62 KB | 0777 |
|
| KNearestNeighbors.php | File | 1.68 KB | 0777 |
|
| MLPClassifier.php | File | 1.38 KB | 0777 |
|
| NaiveBayes.php | File | 5.6 KB | 0777 |
|
| SVC.php | File | 744 B | 0777 |
|
| WeightedClassifier.php | File | 369 B | 0777 |
|