mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-15 09:54:08 +00:00
10 lines
94 B
PHP
10 lines
94 B
PHP
<?php
|
|
|
|
abstract class Dataset
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $filepath;
|
|
}
|