php-ml/src/Phpml/Classification/Classifier.php

12 lines
134 B
PHP
Raw Normal View History

2016-02-09 06:45:07 +00:00
<?php
2016-04-04 20:49:54 +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
}