C# 클래스 numl.Unsupervised.KMeans

A means.
파일 보기 프로젝트 열기: sethjuarez/numl 1 사용 예제들

공개 메소드들

메소드 설명
Generate ( Descriptor descriptor, IEnumerable examples, int k, IDistance metric = null ) : numl.Unsupervised.Cluster

Generates.

Generate ( IEnumerable examples, int k, IDistance metric = null ) : int[]

Generates.

Generate ( Matrix x, int k, IDistance metric ) : int[]

Generates.

비공개 메소드들

메소드 설명
InitializeRandom ( Matrix X, int k ) : Matrix

Initializes the random.

InitializeUniform ( Matrix X, int k ) : Matrix

Initializes the uniform.

메소드 상세

Generate() 공개 메소드

Generates.
public Generate ( Descriptor descriptor, IEnumerable examples, int k, IDistance metric = null ) : numl.Unsupervised.Cluster
descriptor Descriptor The descriptor.
examples IEnumerable The examples.
k int The int to process.
metric IDistance (Optional) the metric.
리턴 numl.Unsupervised.Cluster

Generate() 공개 메소드

Generates.
Thrown when the requested operation is invalid.
public Generate ( IEnumerable examples, int k, IDistance metric = null ) : int[]
examples IEnumerable The examples.
k int The int to process.
metric IDistance (Optional) the metric.
리턴 int[]

Generate() 공개 메소드

Generates.
public Generate ( Matrix x, int k, IDistance metric ) : int[]
x Matrix The Matrix to process.
k int The int to process.
metric IDistance the metric.
리턴 int[]