php-ml/src/Classification/Classifier.php

12 lines
131 B
PHP
Raw Normal View History

2016-02-09 06:45:07 +00:00
<?php
2016-04-04 20:49:54 +00:00
2016-11-20 21:53:17 +00:00
declare(strict_types=1);
2016-02-09 06:45:07 +00:00
namespace Phpml\Classification;
2016-02-09 06:45:07 +00:00
use Phpml\Estimator;
2016-02-09 06:45:07 +00:00
interface Classifier extends Estimator
{
2016-02-09 06:45:07 +00:00
}