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