C# Class Encog.App.Analyst.Script.AnalystScript

Holds a script for the Encog Analyst.
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode Description
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.

Method Details

AddTask() public méthode

Add a task.
public AddTask ( AnalystTask task ) : void
task Encog.App.Analyst.Script.Task.AnalystTask
Résultat void

AnalystScript() public méthode

Construct an analyst script.
public AnalystScript ( ) : System
Résultat System

ClearTasks() public méthode

Clear all tasks.
public ClearTasks ( ) : void
Résultat void

DetermineInputFormat() public méthode

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

DetermineOutputFormat() public méthode

Determine the output format.
public DetermineOutputFormat ( ) : CSVFormat
Résultat Encog.Util.CSV.CSVFormat

ExpectInputHeaders() public méthode

Determine if input headers are expected.
public ExpectInputHeaders ( String filename ) : bool
filename String The filename.
Résultat bool

FindDataField() public méthode

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

FindDataFieldIndex() public méthode

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

FindNormalizedField() public méthode

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.
Résultat Encog.App.Analyst.Script.Normalize.AnalystField

GetTask() public méthode

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

Init() public méthode

Init this script.
public Init ( ) : void
Résultat void

IsGenerated() public méthode

Determine if the specified file was generated.
public IsGenerated ( String filename ) : bool
filename String The filename to check.
Résultat bool

Load() public méthode

Load the script.
public Load ( Stream stream ) : void
stream Stream The stream to load from.
Résultat void

MarkGenerated() public méthode

Mark the sepcified filename as generated.
public MarkGenerated ( String filename ) : void
filename String The filename.
Résultat void

ResolveFilename() public méthode

Resolve the specified filename.
public ResolveFilename ( String sourceID ) : FileInfo
sourceID String The filename to resolve.
Résultat System.IO.FileInfo

Save() public méthode

Save to the specified output stream.
public Save ( Stream stream ) : void
stream Stream The output stream.
Résultat void