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

12 lines
131 B
PHP

<?php
declare(strict_types=1);
namespace Phpml\Classification;
use Phpml\Estimator;
interface Classifier extends Estimator
{
}