C# 클래스 xpidea.neuro.net.patterns.Pattern

A class representing single training pattern and is used to train a neural network. Contains input data and expected results arrays.
상속: NeuroObject
파일 보기 프로젝트 열기: AlexCherkasov/Neuro.NET 1 사용 예제들

공개 메소드들

메소드 설명
Load ( BinaryReader binaryReader ) : void

Overridden.Loads the pattern from a stream.

Pattern ( int inputsCount, int outputsCount ) : System

Constructor. Creates new instance of the pattern.

Save ( BinaryWriter binaryWriter ) : void

Overridden.Saves the pattern to a stream.

메소드 상세

Load() 공개 메소드

Overridden.Loads the pattern from a stream.
public Load ( BinaryReader binaryReader ) : void
binaryReader System.IO.BinaryReader A BinaryReader used to read the stream.
리턴 void

Pattern() 공개 메소드

Constructor. Creates new instance of the pattern.
public Pattern ( int inputsCount, int outputsCount ) : System
inputsCount int Number of input values in a pattern.
outputsCount int Number of output/result values in the pattern.
리턴 System

Save() 공개 메소드

Overridden.Saves the pattern to a stream.
public Save ( BinaryWriter binaryWriter ) : void
binaryWriter System.IO.BinaryWriter A BinaryWriter used to write a stream.
리턴 void