C# 클래스 Encog.App.Analyst.Script.AnalystScript

Holds a script for the Encog Analyst.
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
AddTask ( AnalystTask task ) : void

Add a task.

AnalystScript ( ) : System

Construct an analyst script.

ClearTasks ( ) : void

Clear all tasks.

DetermineInputFormat ( String sourceID ) : CSVFormat

Determine the input format for the specified file.

DetermineOutputFormat ( ) : CSVFormat

Determine the output format.

ExpectInputHeaders ( String filename ) : bool

Determine if input headers are expected.

FindDataField ( String name ) : DataField

Find the specified data field. Use name to find, and ignore case.

FindDataFieldIndex ( DataField df ) : int

Find the specified data field and return its index.

FindNormalizedField ( String name, int slice ) : AnalystField

Find the specified normalized field. Search without case.

GetTask ( String name ) : AnalystTask

Get the specified task.

Init ( ) : void

Init this script.

IsGenerated ( String filename ) : bool

Determine if the specified file was generated.

Load ( Stream stream ) : void

Load the script.

MarkGenerated ( String filename ) : void

Mark the sepcified filename as generated.

ResolveFilename ( String sourceID ) : FileInfo

Resolve the specified filename.

Save ( Stream stream ) : void

Save to the specified output stream.

메소드 상세

AddTask() 공개 메소드

Add a task.
public AddTask ( AnalystTask task ) : void
task Encog.App.Analyst.Script.Task.AnalystTask
리턴 void

AnalystScript() 공개 메소드

Construct an analyst script.
public AnalystScript ( ) : System
리턴 System

ClearTasks() 공개 메소드

Clear all tasks.
public ClearTasks ( ) : void
리턴 void

DetermineInputFormat() 공개 메소드

Determine the input format for the specified file.
public DetermineInputFormat ( String sourceID ) : CSVFormat
sourceID String The file.
리턴 Encog.Util.CSV.CSVFormat

DetermineOutputFormat() 공개 메소드

Determine the output format.
public DetermineOutputFormat ( ) : CSVFormat
리턴 Encog.Util.CSV.CSVFormat

ExpectInputHeaders() 공개 메소드

Determine if input headers are expected.
public ExpectInputHeaders ( String filename ) : bool
filename String The filename.
리턴 bool

FindDataField() 공개 메소드

Find the specified data field. Use name to find, and ignore case.
public FindDataField ( String name ) : DataField
name String The name to search for.
리턴 DataField

FindDataFieldIndex() 공개 메소드

Find the specified data field and return its index.
public FindDataFieldIndex ( DataField df ) : int
df DataField The data field to search for.
리턴 int

FindNormalizedField() 공개 메소드

Find the specified normalized field. Search without case.
public FindNormalizedField ( String name, int slice ) : AnalystField
name String The name of the field we are searching for.
slice int The timeslice.
리턴 Encog.App.Analyst.Script.Normalize.AnalystField

GetTask() 공개 메소드

Get the specified task.
public GetTask ( String name ) : AnalystTask
name String The name of the testk.
리턴 Encog.App.Analyst.Script.Task.AnalystTask

Init() 공개 메소드

Init this script.
public Init ( ) : void
리턴 void

IsGenerated() 공개 메소드

Determine if the specified file was generated.
public IsGenerated ( String filename ) : bool
filename String The filename to check.
리턴 bool

Load() 공개 메소드

Load the script.
public Load ( Stream stream ) : void
stream Stream The stream to load from.
리턴 void

MarkGenerated() 공개 메소드

Mark the sepcified filename as generated.
public MarkGenerated ( String filename ) : void
filename String The filename.
리턴 void

ResolveFilename() 공개 메소드

Resolve the specified filename.
public ResolveFilename ( String sourceID ) : FileInfo
sourceID String The filename to resolve.
리턴 System.IO.FileInfo

Save() 공개 메소드

Save to the specified output stream.
public Save ( Stream stream ) : void
stream Stream The output stream.
리턴 void