mcordingley/Regression

View on GitHub
src/Predictor/Predictor.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types = 1);

namespace MCordingley\Regression\Predictor;

interface Predictor
{
    /**
     * @param array $features
     * @return float
     */
    public function predict(array $features): float;
}