mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2025-02-04 21:18:33 +00:00
14 lines
283 B
Markdown
14 lines
283 B
Markdown
|
# SvmDataset
|
||
|
|
||
|
Helper class that loads data from SVM-Light format file. It extends the `ArrayDataset`.
|
||
|
|
||
|
### Constructors Parameters
|
||
|
|
||
|
* $filepath - (string) path to the file
|
||
|
|
||
|
```
|
||
|
$dataset = new SvmDataset('dataset.svm');
|
||
|
```
|
||
|
|
||
|
See [ArrayDataset](array-dataset.md) for more information.
|