Write a multilayer perceptron to a file.
write_class_mlp writes the multilayer perceptron (MLP) MLPHandle to the file given by FileName. write_class_mlp is typically called after the MLP has been trained with train_class_mlp. The MLP can be read with read_class_mlp. write_class_mlp does not write any training samples that possibly have been stored in the MLP. For this purpose, write_samples_class_mlp should be used.
|
MLPHandle (input_control) |
class_mlp -> integer |
| MLP handle. | |
|
FileName (input_control) |
filename -> string |
| File name. | |
If the parameters are valid, the operator write_class_mlp returns the value 2 (H_MSG_TRUE). If necessary an exception handling is raised.
write_class_mlp is reentrant and processed without parallelization.
create_class_mlp, read_class_mlp, write_samples_class_mlp
Foundation