← Back
Editing: EstimatorWrapper.php
<?php namespace Rubix\ML; /** * Wrapper * * @category Machine Learning * @package Rubix/ML * @author Ronan Giron */ interface EstimatorWrapper extends Estimator { /** * Return the base estimator instance. * * @return Estimator */ public function base() : Estimator; }
Save File
Cancel