INeuralNetwork.ExportSynapses

Fore Syntax

ExportSynapses: String;

Fore.NET Syntax

ExportSynapses(): string;

Description

The ExportSynapses method returns network string view.

Comments

ExportSynapses can be used to store network configuration. For example, a string view that has been obtained is saved to the file and used to create a network by means of the INeuralNetwork.CreateNetwork method. To load only values of synapse weights from the string view, use INeuralNetwork.ImportSynapses.

Fore and Fore.NET Examples

The method use is given in the example for INeuralNetwork.CreateNetworkEx.

See also:

INeuralNetwork