getEstimator() публичный Метод

public getEstimator ( ) : phpml\Estimator
Результат phpml\Estimator
Пример #1
0
 public function testPipelineEstimatorSetter()
 {
     $pipeline = new Pipeline([new TfIdfTransformer()], new SVC());
     $estimator = new SVR();
     $pipeline->setEstimator($estimator);
     $this->assertEquals($estimator, $pipeline->getEstimator());
 }