C# 클래스 Encog.Util.Banchmark.RandomTrainingFactory

파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
Generate ( long seed, int count, int inputCount, int idealCount, double min, double max ) : BasicMLDataSet

Generate a random training set.

Generate ( IMLDataSet training, long seed, int count, double min, double max ) : void

Generate random training into a training set.

비공개 메소드들

메소드 설명
RandomTrainingFactory ( ) : Encog.MathUtil

Private constructor.

메소드 상세

Generate() 공개 정적인 메소드

Generate a random training set.
public static Generate ( long seed, int count, int inputCount, int idealCount, double min, double max ) : BasicMLDataSet
seed long The seed value to use, the same seed value will always produce /// the same results.
count int How many training items to generate.
inputCount int How many input numbers.
idealCount int How many ideal numbers.
min double The minimum random number.
max double The maximum random number.
리턴 BasicMLDataSet

Generate() 공개 정적인 메소드

Generate random training into a training set.
public static Generate ( IMLDataSet training, long seed, int count, double min, double max ) : void
training IMLDataSet The training set to generate into.
seed long The seed to use.
count int How much data to generate.
min double The low random value.
max double The high random value.
리턴 void