CakeFest 2024: The Official CakePHP Conference

SVMModel クラス

(PECL svm >= 0.1.0)

はじめに

SVMModel は、訓練処理の結果です。 それは、以前は目に見えなかったデータを分類するために使用できます。

クラス概要

class SVMModel {
/* メソッド */
public __construct(string $filename = ?)
public getLabels(): array
public getNrClass(): int
public getSvmType(): int
public load(string $filename): bool
public predict(array $data): float
public save(string $filename): bool
}

目次

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top