NeurApp 1.1
NeurApp - software for exploring approximation by artificial neural networks on functions of one or two variables.
|
Commands for application's interpreter for neural networks. More...
Static Public Member Functions | |
static void | InstallCommands (ICommandLineApplicationInterpreter app) |
Installs Tadejcommands for neural networks on the applications's command interpreter. | |
static string | cmdTestSerializationNeuralCSV (ICommandLineApplicationInterpreter interpreter, string cmdName, string[] args) |
Tests serialization and deserialization of various data used in approximation by neural networks. | |
static string | cmdTestSerializationNeural (ICommandLineApplicationInterpreter interpreter, string cmdName, string[] args) |
Tests serialization and deserialization of various data used in approximation by neural networks. | |
static string | CmdTestJson (ICommandLineApplicationInterpreter interpreter, string cmdName, string[] args) |
Command. Tests speed of I/O in JSON format. A random matrix of specific size is randomly generated, read and written. Argumnets: filePath: file path numRows: number of rows of the matrix numColumnt: number of columns of the matrix. | |
static string | CmdTestFormat (ICommandLineApplicationInterpreter interpreter, string cmdName, string[] args) |
Command. Tests file formats. Attempsts to import the specified file in the specified format, then to export it under new name. Argumnets: format: file format specification. Not case sensitive. NeuralDataDefinition filePath: file path. | |
static string | CmdSupplementNeuralDataDefinition (ICommandLineApplicationInterpreter interpreter, string cmdName, string[] args) |
Command method that supplements neural input/output data definitions from training data (some values are inferred from data ranges in training data). | |
static string | CmdNeuralClearMessages (ICommandLineApplicationInterpreter interpreter, string cmdName, string[] args) |
Command. Clears all messages for neural network approximation file client/server. | |
static string | CmdNeuralCalculateApproximationPlain (ICommandLineApplicationInterpreter interpreter, string cmdName, string[] args) |
Command. Calculates approximation according to input parameters written in a file, and outputs resulting approximated values to a file. This command loads a neural network from the specified file, reads input parameters from another file, and writes output parameters to the third file. The first argument is the neural network file, the second is file with input parameters, and the third is file where approximated output values willl be written. | |
static string | CmdNeuralCalculateApproximationServer (ICommandLineApplicationInterpreter interpreter, string cmdName, string[] args) |
Command. Calculates approximation according to input parameters written in a file, and outputs resulting approximated values to a file. The only argument is the client/server working directory. | |
static string | CmdNeuralCalculateApproximationClient (ICommandLineApplicationInterpreter interpreter, string cmdName, string[] args) |
Command. Sends request to a server to calculate an approximation. The first argument is the client/server working directory, the second is file with input parameters, and the third is file where approximated output values willl be written. | |
static string | CmdNeuralCalculateMappingApproximationServer (ICommandLineApplicationInterpreter interpreter, string cmdName, string[] args) |
Command. Calculates mapping + approximation according to reduced input parameters written in a file, and outputs resulting approximated values to a file. The only argument is the client/server working directory. | |
static string | CmdNeuralCalculateMappingApproximationClient (ICommandLineApplicationInterpreter interpreter, string cmdName, string[] args) |
Command. Sends request to a server to calculate mapping + approximation. The first argument is the client/server working directory, the second is file with reduced input parameters, and the third is file where approximated reduced output values willl be written. | |
static string | CmdExampleNeural (ICommandLineApplicationInterpreter interpreter, string cmdName, string[] args) |
Command. Example command for Tadej. |
Commands for application's interpreter for neural networks.
$A Igor Apr11;
static void IG::Neural::NeuralAllpicationCommands::InstallCommands | ( | ICommandLineApplicationInterpreter | app | ) | [inline, static] |
Installs Tadejcommands for neural networks on the applications's command interpreter.
Reimplemented in IG::Neural::NeuralApplicationCommandsTadej, and IG::Neural::NeuralAllpicationCommandsNeuronDotNet.
static string IG::Neural::NeuralAllpicationCommands::cmdTestSerializationNeuralCSV | ( | ICommandLineApplicationInterpreter | interpreter, |
string | cmdName, | ||
string[] | args | ||
) | [inline, static] |
Tests serialization and deserialization of various data used in approximation by neural networks.
interpreter | Interpreter on which commad is run. |
cmdName | Command name. |
args | Command arguments. |
Tako78 7.Jul
static string IG::Neural::NeuralAllpicationCommands::cmdTestSerializationNeural | ( | ICommandLineApplicationInterpreter | interpreter, |
string | cmdName, | ||
string[] | args | ||
) | [inline, static] |
Tests serialization and deserialization of various data used in approximation by neural networks.
interpreter | Interpreter on which commad is run. |
cmdName | Command name. |
args | Command arguments. |
Tako78 7.Jul
static string IG::Neural::NeuralAllpicationCommands::CmdTestJson | ( | ICommandLineApplicationInterpreter | interpreter, |
string | cmdName, | ||
string[] | args | ||
) | [inline, static] |
Command. Tests speed of I/O in JSON format. A random matrix of specific size is randomly generated, read and written. Argumnets: filePath: file path numRows: number of rows of the matrix numColumnt: number of columns of the matrix.
interpreter | Interpreter on which commad is run. |
cmdName | Command name. |
args | Command arguments. |
static string IG::Neural::NeuralAllpicationCommands::CmdTestFormat | ( | ICommandLineApplicationInterpreter | interpreter, |
string | cmdName, | ||
string[] | args | ||
) | [inline, static] |
Command. Tests file formats. Attempsts to import the specified file in the specified format, then to export it under new name. Argumnets: format: file format specification. Not case sensitive. NeuralDataDefinition filePath: file path.
interpreter | Interpreter on which commad is run. |
cmdName | Command name. |
args | Command arguments. |
static string IG::Neural::NeuralAllpicationCommands::CmdSupplementNeuralDataDefinition | ( | ICommandLineApplicationInterpreter | interpreter, |
string | cmdName, | ||
string[] | args | ||
) | [inline, static] |
Command method that supplements neural input/output data definitions from training data (some values are inferred from data ranges in training data).
interpreter | Interpreter on which commad is run. |
cmdName | Command name. |
args | Command arguments. |
static string IG::Neural::NeuralAllpicationCommands::CmdNeuralClearMessages | ( | ICommandLineApplicationInterpreter | interpreter, |
string | cmdName, | ||
string[] | args | ||
) | [inline, static] |
Command. Clears all messages for neural network approximation file client/server.
interpreter | Interpreter on which commad is run. |
cmdName | Command name. |
args | Command arguments. |
static string IG::Neural::NeuralAllpicationCommands::CmdNeuralCalculateApproximationPlain | ( | ICommandLineApplicationInterpreter | interpreter, |
string | cmdName, | ||
string[] | args | ||
) | [inline, static] |
Command. Calculates approximation according to input parameters written in a file, and outputs resulting approximated values to a file. This command loads a neural network from the specified file, reads input parameters from another file, and writes output parameters to the third file. The first argument is the neural network file, the second is file with input parameters, and the third is file where approximated output values willl be written.
cmdName | Command name. |
args | Command arguments. |
Interpreter command. Calculates approximation according to input parameters written in a file, and outputs resulting approximated values to a file. This command loads a neural network from the specified file, reads input parameters from another file, and writes the calculated output values to the third file. The first argument is the neural network file, the second is file with input parameters, and the third is file where approximated output values willl be written.
interpreter | Interpreter on which commad is run. |
cmdName | Command name. |
args | Command arguments. |
static string IG::Neural::NeuralAllpicationCommands::CmdNeuralCalculateApproximationServer | ( | ICommandLineApplicationInterpreter | interpreter, |
string | cmdName, | ||
string[] | args | ||
) | [inline, static] |
Command. Calculates approximation according to input parameters written in a file, and outputs resulting approximated values to a file. The only argument is the client/server working directory.
interpreter | Interpreter on which commad is run. |
cmdName | Command name. |
args | Command arguments. |
static string IG::Neural::NeuralAllpicationCommands::CmdNeuralCalculateApproximationClient | ( | ICommandLineApplicationInterpreter | interpreter, |
string | cmdName, | ||
string[] | args | ||
) | [inline, static] |
Command. Sends request to a server to calculate an approximation. The first argument is the client/server working directory, the second is file with input parameters, and the third is file where approximated output values willl be written.
interpreter | Interpreter on which commad is run. |
cmdName | Command name. |
args | Command arguments. |
static string IG::Neural::NeuralAllpicationCommands::CmdNeuralCalculateMappingApproximationServer | ( | ICommandLineApplicationInterpreter | interpreter, |
string | cmdName, | ||
string[] | args | ||
) | [inline, static] |
Command. Calculates mapping + approximation according to reduced input parameters written in a file, and outputs resulting approximated values to a file. The only argument is the client/server working directory.
interpreter | Interpreter on which commad is run. |
cmdName | Command name. |
args | Command arguments. |
$A tako78 Jul.21
static string IG::Neural::NeuralAllpicationCommands::CmdNeuralCalculateMappingApproximationClient | ( | ICommandLineApplicationInterpreter | interpreter, |
string | cmdName, | ||
string[] | args | ||
) | [inline, static] |
Command. Sends request to a server to calculate mapping + approximation. The first argument is the client/server working directory, the second is file with reduced input parameters, and the third is file where approximated reduced output values willl be written.
interpreter | Interpreter on which commad is run. |
cmdName | Command name. |
args | Command arguments. |
$A tako78 Jul.21
static string IG::Neural::NeuralAllpicationCommands::CmdExampleNeural | ( | ICommandLineApplicationInterpreter | interpreter, |
string | cmdName, | ||
string[] | args | ||
) | [inline, static] |
Command. Example command for Tadej.
interpreter | Interpreter on which commad is run. |
cmdName | Command name. |
args | Command arguments. |