IGLib
1.7.2
The IGLib base library EXTENDED - with other lilbraries and applications.
|
Experimental class for neural parametric demos. More...
Public Member Functions | |
AnnAppDemoExperimental () | |
AnnAppDemoExperimental (INeuralModel model) | |
Construct a new window for ANN based predictions, with the model specified. More... | |
AnnAppDemoExperimental (string neuralDirectoryPath) | |
Construct a new window for ANN based predictions, with the specified base directory of the model. More... | |
override void | InitLayout () |
Initializes the layout. Eventually, this specifies which tabs appear on the form and wich do not. More... | |
override void | Initform () |
Initializes the form, including the layout by calling the InitLayout method. More... | |
![]() | |
AnnAppDemo () | |
AnnAppDemo (INeuralModel model) | |
Construct a new window for ANN based predictions, with the model specified. More... | |
AnnAppDemo (string neuralDirectoryPath) | |
Construct a new window for ANN based predictions, with the specified base directory of the model. More... | |
void | SetNeuralModel (INeuralModel model) |
Sets the ANN-based model used by the current form. More... | |
void | SetNeuralScriptShellPath (string path) |
Sets the directory for More... | |
Additional Inherited Members | |
![]() | |
override void | Dispose (bool disposing) |
Clean up any resources being used. More... | |
![]() | |
string | _workingDirectory = Directory.GetCurrentDirectory() |
string | _neuralScriptShellPath = null |
NeuralParametricDemoAboutWindow | _aboutWindow |
![]() | |
bool | IsTabPageVisibleCommand [get, set] |
Whether the "Command" tab is visible or not. More... | |
bool | IsTabPageVisibleAbout [get, set] |
Whether the "About" tab is visible or not. More... | |
bool | IsTabPageVisibleParametric [get, set] |
Whether the parametric test tab is visible or not. More... | |
bool | IsTabPageVisibleParametricMultiple [get, set] |
Whether the multiple curve parametric test tab is visible or not. More... | |
bool | IsTabPageVisibleParametric2D [get, set] |
Whether the 2D parametric test tab is visible or not. More... | |
bool | IsTabPageVisibleTrain [get, set] |
Whether the training tab is included or not. More... | |
bool | IsTabPageVisibleData [get, set] |
Whether the data tab is included or not. More... | |
bool | IsTabPageVisibleSampling [get, set] |
Whether the sampling tab is visible or not. More... | |
string | WorkingDirectory [get, set] |
Working directory of the outer form. More... | |
INeuralModel | NeuralModel [get, protected set] |
Neural network - based model. More... | |
string | NeuralScriptShellPath [get, protected set] |
Path of the working directory for the ANN-based approximation approximation scripts. More... | |
INeuralApproximator | TrainedNetwork [get] |
Traint artificial neural network. More... | |
InputOutputDataDefiniton | NeuralDataDefinition [get] |
Neural data definition. More... | |
NeuralParametricDemoAboutWindow | AboutWindow [get] |
Window that shows information about the software. More... | |
![]() | |
INeuralModel | NeuralModel [get] |
Artificial neural network - based model. More... | |
Experimental class for neural parametric demos.
$A Igor Jun13;
|
inline |
|
inline |
Construct a new window for ANN based predictions, with the model specified.
model | ANN - base model, contains input and output data definitions and |
|
inline |
Construct a new window for ANN based predictions, with the specified base directory of the model.
neuralDirectoryPath | Directory containing all data for the ANN-based model. |
|
inlinevirtual |
Initializes the layout. Eventually, this specifies which tabs appear on the form and wich do not.
Constructors call the Initform method that call this method.
This should be overridden in derived classes, and overridden method should not call the base method.
Reimplemented from IG.Neural.Applications.AnnAppDemo.
|
inlinevirtual |
Initializes the form, including the layout by calling the InitLayout method.
This method is called in constructors.
This might be overridden in derived classes, but usually this is not necessary. The overridden methods should call this method from the base class.
Reimplemented from IG.Neural.Applications.AnnAppDemo.