C# 클래스 Encog.App.Analyst.EncogAnalyst

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

공개 메소드들

메소드 설명
AddAnalystListener ( IAnalystListener listener ) : void

Add a listener.

AddCommand ( Cmd cmd ) : void

Add a command.

Analyze ( FileInfo file, bool headers, AnalystFileFormat format ) : void

Analyze the specified file. Used by the wizard.

DetermineInputCount ( ) : int

Determine the input count. This is the actual number of columns.

DetermineInputFieldCount ( ) : int

Determine the input field count, the fields are higher-level than columns.

DetermineOutputCount ( ) : int

Determine the output count, this is the number of output columns needed.

DetermineOutputFieldCount ( ) : int

Determine the number of output fields. Fields are higher level than columns.

DetermineTotalColumns ( ) : int

Determine the total number of columns.

DetermineTotalInputFieldCount ( ) : int

Determine the total input field count, minus ignored fields.

DetermineUniqueColumns ( ) : int

Determine how many unique columns there are. Timeslices are not counted multiple times.

DetermineUniqueInputFieldCount ( ) : int

Determine the unique input field count. Timeslices are not counted multiple times.

DetermineUniqueOutputFieldCount ( ) : int

Determine the unique output field count. Do not count timeslices multiple times.

Download ( ) : void

Download a raw file from the Internet.

EncogAnalyst ( ) : System

Construct the Encog analyst.

ExecuteTask ( AnalystTask task ) : void

Execute a task.

ExecuteTask ( String name ) : void

Execute a task.

Load ( FileInfo file ) : void

Load the specified script file.

Load ( Stream stream ) : void

Load from an input stream.

Load ( String filename ) : void

Load from the specified filename.

RemoveAnalystListener ( IAnalystListener listener ) : void

Remove a listener.

ReportTraining ( IMLTrain train ) : void

Report training.

ReportTrainingBegin ( ) : void

Report that training has begun.

ReportTrainingEnd ( ) : void

Report that training has ended.

Save ( FileInfo file ) : void

Save the script to a file.

Save ( Stream stream ) : void

Save the script to a stream.

Save ( String filename ) : void

Save the script to a filename.

ShouldStopCommand ( ) : bool

Should the current command be stopped.

비공개 메소드들

메소드 설명
DownloadPage ( Uri url, FileInfo file ) : void

Down load a file from the specified URL, uncompress if needed.

Report ( int total, int current, String message ) : void

Report progress.

ReportCommandBegin ( int total, int current, String name ) : void

Report a command has begin.

ReportCommandEnd ( bool canceled ) : void

Report a command has ended.

ShouldStopAll ( ) : bool

Should all commands be stopped.

StopCurrentTask ( ) : void

메소드 상세

AddAnalystListener() 공개 메소드

Add a listener.
public AddAnalystListener ( IAnalystListener listener ) : void
listener IAnalystListener The listener to add.
리턴 void

AddCommand() 공개 메소드

Add a command.
public AddCommand ( Cmd cmd ) : void
cmd Encog.App.Analyst.Commands.Cmd The command to add.
리턴 void

Analyze() 공개 메소드

Analyze the specified file. Used by the wizard.
public Analyze ( FileInfo file, bool headers, AnalystFileFormat format ) : void
file System.IO.FileInfo The file to analyze.
headers bool True if headers are present.
format AnalystFileFormat The format of the file.
리턴 void

DetermineInputCount() 공개 메소드

Determine the input count. This is the actual number of columns.
public DetermineInputCount ( ) : int
리턴 int

DetermineInputFieldCount() 공개 메소드

Determine the input field count, the fields are higher-level than columns.
public DetermineInputFieldCount ( ) : int
리턴 int

DetermineOutputCount() 공개 메소드

Determine the output count, this is the number of output columns needed.
public DetermineOutputCount ( ) : int
리턴 int

DetermineOutputFieldCount() 공개 메소드

Determine the number of output fields. Fields are higher level than columns.
public DetermineOutputFieldCount ( ) : int
리턴 int

DetermineTotalColumns() 공개 메소드

Determine the total number of columns.
public DetermineTotalColumns ( ) : int
리턴 int

DetermineTotalInputFieldCount() 공개 메소드

Determine the total input field count, minus ignored fields.
public DetermineTotalInputFieldCount ( ) : int
리턴 int

DetermineUniqueColumns() 공개 메소드

Determine how many unique columns there are. Timeslices are not counted multiple times.
public DetermineUniqueColumns ( ) : int
리턴 int

DetermineUniqueInputFieldCount() 공개 메소드

Determine the unique input field count. Timeslices are not counted multiple times.
public DetermineUniqueInputFieldCount ( ) : int
리턴 int

DetermineUniqueOutputFieldCount() 공개 메소드

Determine the unique output field count. Do not count timeslices multiple times.
public DetermineUniqueOutputFieldCount ( ) : int
리턴 int

Download() 공개 메소드

Download a raw file from the Internet.
public Download ( ) : void
리턴 void

EncogAnalyst() 공개 메소드

Construct the Encog analyst.
public EncogAnalyst ( ) : System
리턴 System

ExecuteTask() 공개 메소드

Execute a task.
public ExecuteTask ( AnalystTask task ) : void
task Encog.App.Analyst.Script.Task.AnalystTask The task to execute.
리턴 void

ExecuteTask() 공개 메소드

Execute a task.
public ExecuteTask ( String name ) : void
name String The name of the task to execute.
리턴 void

Load() 공개 메소드

Load the specified script file.
public Load ( FileInfo file ) : void
file System.IO.FileInfo The file to load.
리턴 void

Load() 공개 메소드

Load from an input stream.
public Load ( Stream stream ) : void
stream Stream The stream to load from.
리턴 void

Load() 공개 메소드

Load from the specified filename.
public Load ( String filename ) : void
filename String The filename to load from.
리턴 void

RemoveAnalystListener() 공개 메소드

Remove a listener.
public RemoveAnalystListener ( IAnalystListener listener ) : void
listener IAnalystListener The listener to remove.
리턴 void

ReportTraining() 공개 메소드

Report training.
public ReportTraining ( IMLTrain train ) : void
train IMLTrain The trainer.
리턴 void

ReportTrainingBegin() 공개 메소드

Report that training has begun.
public ReportTrainingBegin ( ) : void
리턴 void

ReportTrainingEnd() 공개 메소드

Report that training has ended.
public ReportTrainingEnd ( ) : void
리턴 void

Save() 공개 메소드

Save the script to a file.
public Save ( FileInfo file ) : void
file System.IO.FileInfo The file to save to.
리턴 void

Save() 공개 메소드

Save the script to a stream.
public Save ( Stream stream ) : void
stream Stream The stream to save to.
리턴 void

Save() 공개 메소드

Save the script to a filename.
public Save ( String filename ) : void
filename String The filename to save to.
리턴 void

ShouldStopCommand() 공개 메소드

Should the current command be stopped.
public ShouldStopCommand ( ) : bool
리턴 bool