org.encog.app.analyst
public interface AnalystListener
Modifier and Type | Method and Description |
---|---|
void |
report(int total,
int current,
String message)
Report progress on a task.
|
void |
reportCommandBegin(int total,
int current,
String name)
Report that a command has begun.
|
void |
reportCommandEnd(boolean canceled)
Report that a command has ended.
|
void |
reportTraining(MLTrain train)
Report progress on training.
|
void |
reportTrainingBegin()
Report that training has begun.
|
void |
reportTrainingEnd()
Report that training has ended.
|
void |
requestCancelCommand()
Request to cancel current command.
|
void |
requestShutdown()
Request stop the entire process.
|
boolean |
shouldShutDown() |
boolean |
shouldStopCommand() |
void requestShutdown()
void requestCancelCommand()
boolean shouldShutDown()
boolean shouldStopCommand()
void reportCommandBegin(int total, int current, String name)
total
- The total parts.current
- The current part.name
- The name of that command.void reportCommandEnd(boolean canceled)
canceled
- True if this command was canceled.void reportTrainingBegin()
void reportTrainingEnd()
void reportTraining(MLTrain train)
train
- The training object.void report(int total, int current, String message)
total
- The total number of commands.current
- The current command.message
- The message.Copyright © 2014. All Rights Reserved.