C# 클래스 numl.Unsupervised.GMM

A Generative Mixture Model.
파일 보기 프로젝트 열기: sethjuarez/numl

공개 메소드들

메소드 설명
Generate ( IEnumerable examples, int k ) : void

Generates.

Generate ( Matrix X, int k ) : void

Generates.

Normal ( Vector x, Vector mu, Vector sigma ) : double

Compute probability according to multivariate Gaussian.

비공개 메소드들

메소드 설명
pow ( double a, double d ) : double
sqrt ( double d ) : double

메소드 상세

Generate() 공개 메소드

Generates.
Thrown when the requested operation is invalid.
public Generate ( IEnumerable examples, int k ) : void
examples IEnumerable The examples.
k int The int to process.
리턴 void

Generate() 공개 메소드

Generates.
public Generate ( Matrix X, int k ) : void
X Matrix The Matrix to process.
k int The int to process.
리턴 void

Normal() 공개 메소드

Compute probability according to multivariate Gaussian.
public Normal ( Vector x, Vector mu, Vector sigma ) : double
x numl.Math.LinearAlgebra.Vector Vector in question.
mu numl.Math.LinearAlgebra.Vector Mean.
sigma numl.Math.LinearAlgebra.Vector diag(covariance)
리턴 double