php-ml/src/Phpml/Regression/Regression.php

12 lines
130 B
PHP
Raw Normal View History

2016-04-25 20:55:34 +00:00
<?php
declare (strict_types = 1);
namespace Phpml\Regression;
use Phpml\Estimator;
2016-04-25 20:55:34 +00:00
interface Regression extends Estimator
{
2016-04-25 20:55:34 +00:00
}