- Fann - Class in com.googlecode.fannj
-
A standard fully connected back-propagation neural network.
- Fann() - Constructor for class com.googlecode.fannj.Fann
-
- Fann(String) - Constructor for class com.googlecode.fannj.Fann
-
Load an existing FANN definition from a file
- Fann(List<Layer>) - Constructor for class com.googlecode.fannj.Fann
-
Create a new ANN with the provided layers.
- fann_create_from_file(String) - Static method in class com.googlecode.fannj.Fann
-
- fann_create_shortcut_array(int, int[]) - Static method in class com.googlecode.fannj.Fann
-
- fann_create_sparse_array(float, int, int[]) - Static method in class com.googlecode.fannj.Fann
-
- fann_create_standard_array(int, int[]) - Static method in class com.googlecode.fannj.Fann
-
- fann_destroy(Pointer) - Static method in class com.googlecode.fannj.Fann
-
- fann_get_MSE(Pointer) - Static method in class com.googlecode.fannj.Fann
-
- fann_get_MSE(Pointer) - Static method in class com.googlecode.fannj.Trainer
-
- fann_get_neuron(Pointer, int, int) - Static method in class com.googlecode.fannj.Fann
-
- fann_get_num_input(Pointer) - Static method in class com.googlecode.fannj.Fann
-
- fann_get_num_output(Pointer) - Static method in class com.googlecode.fannj.Fann
-
- fann_get_total_neurons(Pointer) - Static method in class com.googlecode.fannj.Fann
-
- fann_run(Pointer, float[]) - Static method in class com.googlecode.fannj.Fann
-
- fann_save(Pointer, String) - Static method in class com.googlecode.fannj.Fann
-
- fann_set_activation_function(Pointer, int, int, int) - Static method in class com.googlecode.fannj.Fann
-
- fann_set_activation_steepness(Pointer, float, int, int) - Static method in class com.googlecode.fannj.Fann
-
- fann_train_on_file(Pointer, String, int, int, float) - Static method in class com.googlecode.fannj.Trainer
-
- FannShortcut - Class in com.googlecode.fannj
-
A standard backpropagation neural network, which is not fully connected and
which also has shortcut connections.
- FannShortcut(List<Layer>) - Constructor for class com.googlecode.fannj.FannShortcut
-
- FannSparse - Class in com.googlecode.fannj
-
A standard backpropagation neural network, which is not fully connected.
- FannSparse(List<Layer>) - Constructor for class com.googlecode.fannj.FannSparse
-
- FannSparse(float, List<Layer>) - Constructor for class com.googlecode.fannj.FannSparse
-