Method | Description | |
---|---|---|
AddAnalystListener ( IAnalystListener listener ) : void |
Add a listener.
|
|
AddCommand ( |
Add a command.
|
|
Analyze ( |
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 ( |
Execute a task.
|
|
ExecuteTask ( String name ) : void |
Execute a task.
|
|
Load ( |
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 ( |
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.
|
Method | Description | |
---|---|---|
DownloadPage ( |
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 |
public AddAnalystListener ( IAnalystListener listener ) : void | ||
listener | IAnalystListener | The listener to add. |
return | void |
public AddCommand ( |
||
cmd | The command to add. | |
return | void |
public Analyze ( |
||
file | The file to analyze. | |
headers | bool | True if headers are present. |
format | AnalystFileFormat | The format of the file. |
return | void |
public DetermineTotalInputFieldCount ( ) : int | ||
return | int |
public DetermineUniqueInputFieldCount ( ) : int | ||
return | int |
public DetermineUniqueOutputFieldCount ( ) : int | ||
return | int |
public ExecuteTask ( |
||
task | The task to execute. | |
return | void |
public ExecuteTask ( String name ) : void | ||
name | String | The name of the task to execute. |
return | void |
public Load ( |
||
file | The file to load. | |
return | void |
public Load ( Stream stream ) : void | ||
stream | Stream | The stream to load from. |
return | void |
public Load ( String filename ) : void | ||
filename | String | The filename to load from. |
return | void |
public RemoveAnalystListener ( IAnalystListener listener ) : void | ||
listener | IAnalystListener | The listener to remove. |
return | void |
public ReportTraining ( IMLTrain train ) : void | ||
train | IMLTrain | The trainer. |
return | void |
public Save ( |
||
file | The file to save to. | |
return | void |
public Save ( Stream stream ) : void | ||
stream | Stream | The stream to save to. |
return | void |
public Save ( String filename ) : void | ||
filename | String | The filename to save to. |
return | void |