PHP 클래스 Phpml\Regression\LeastSquares

상속: implements Regression, use trait Phpml\Helper\Predictable
파일 보기 프로젝트 열기: php-ai/php-ml 1 사용 예제들

공개 메소드들

메소드 설명
getCoefficients ( ) : array
getIntercept ( ) : float
predictSample ( array $sample ) : mixed
train ( array $samples, array $targets )

비공개 메소드들

메소드 설명
computeCoefficients ( ) coefficient(b) = (X'X)-1X'Y.
getSamplesMatrix ( ) : Matrix Add one dimension for intercept calculation.
getTargetsMatrix ( ) : Matrix

메소드 상세

getCoefficients() 공개 메소드

public getCoefficients ( ) : array
리턴 array

getIntercept() 공개 메소드

public getIntercept ( ) : float
리턴 float

predictSample() 공개 메소드

public predictSample ( array $sample ) : mixed
$sample array
리턴 mixed

train() 공개 메소드

public train ( array $samples, array $targets )
$samples array
$targets array