Enum fann_sys::fann_errno_enum [] [src]

#[repr(C)]
pub enum fann_errno_enum { FANN_E_NO_ERROR, FANN_E_CANT_OPEN_CONFIG_R, FANN_E_CANT_OPEN_CONFIG_W, FANN_E_WRONG_CONFIG_VERSION, FANN_E_CANT_READ_CONFIG, FANN_E_CANT_READ_NEURON, FANN_E_CANT_READ_CONNECTIONS, FANN_E_WRONG_NUM_CONNECTIONS, FANN_E_CANT_OPEN_TD_W, FANN_E_CANT_OPEN_TD_R, FANN_E_CANT_READ_TD, FANN_E_CANT_ALLOCATE_MEM, FANN_E_CANT_TRAIN_ACTIVATION, FANN_E_CANT_USE_ACTIVATION, FANN_E_TRAIN_DATA_MISMATCH, FANN_E_CANT_USE_TRAIN_ALG, FANN_E_TRAIN_DATA_SUBSET, FANN_E_INDEX_OUT_OF_BOUND, FANN_E_SCALE_NOT_PRESENT, }

Error events on fann and fann_train_data.

Variants

No error

Unable to open configuration file for reading

Unable to open configuration file for writing

Wrong version of configuration file

Error reading info from configuration file

Error reading neuron info from configuration file

Error reading connections from configuration file

Number of connections not equal to the number expected

Unable to open train data file for writing

Unable to open train data file for reading

Error reading training data from file

Unable to allocate memory

Unable to train with the selected activation function

Unable to use the selected activation function

Irreconcilable differences between two fann_train_data structures

Unable to use the selected training algorithm

Trying to take subset which is not within the training set

Index is out of bound

Scaling parameters not present

Trait Implementations

impl Copy for fann_errno_enum
[src]

impl Clone for fann_errno_enum
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more