├── .gitignore ├── .gitmodules ├── CREDITS ├── LICENSE ├── README.md ├── TODO.md ├── config.m4 ├── config.w32 ├── examples ├── SplitTrainingData.php ├── logic_gates │ ├── and.data │ ├── nand.data │ ├── nor.data │ ├── not.data │ ├── or.data │ ├── simple_merge.php │ ├── simple_test.php │ ├── simple_train.php │ ├── simple_train_epoch.php │ ├── test_all.php │ ├── train_all.php │ ├── xnor.data │ ├── xor.data │ ├── xor_part_1.data │ └── xor_part_2.data ├── ocr │ ├── images │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 25.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ ├── 29.png │ │ ├── 3.png │ │ ├── 30.png │ │ ├── 31.png │ │ ├── 32.png │ │ ├── 33.png │ │ ├── 34.png │ │ ├── 35.png │ │ ├── 36.png │ │ ├── 37.png │ │ ├── 38.png │ │ ├── 39.png │ │ ├── 4.png │ │ ├── 40.png │ │ ├── 41.png │ │ ├── 42.png │ │ ├── 43.png │ │ ├── 44.png │ │ ├── 45.png │ │ ├── 46.png │ │ ├── 47.png │ │ ├── 48.png │ │ ├── 49.png │ │ ├── 5.png │ │ ├── 50.png │ │ ├── 51.png │ │ ├── 52.png │ │ ├── 53.png │ │ ├── 54.png │ │ ├── 55.png │ │ ├── 56.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 59.png │ │ ├── 6.png │ │ ├── 60.png │ │ ├── 61.png │ │ ├── 62.png │ │ ├── 63.png │ │ ├── 64.png │ │ ├── 65.png │ │ ├── 66.png │ │ ├── 67.png │ │ ├── 68.png │ │ ├── 69.png │ │ ├── 7.png │ │ ├── 70.png │ │ ├── 71.png │ │ ├── 72.png │ │ ├── 73.png │ │ ├── 74.png │ │ ├── 75.png │ │ ├── 76.png │ │ ├── 77.png │ │ ├── 78.png │ │ ├── 79.png │ │ ├── 8.png │ │ ├── 80.png │ │ ├── 81.png │ │ ├── 82.png │ │ ├── 83.png │ │ ├── 84.png │ │ ├── 85.png │ │ ├── 86.png │ │ ├── 87.png │ │ ├── 88.png │ │ ├── 89.png │ │ ├── 9.png │ │ ├── 90.png │ │ ├── 91.png │ │ ├── 92.png │ │ └── 93.png │ ├── ocr.data │ ├── test_ocr.php │ └── train_ocr.php └── pathfinder │ ├── pathfinder.data │ ├── pathfinder_test.php │ └── pathfinder_train.php ├── fann.c ├── fann.php ├── fann_connection.c ├── package.xml ├── php_fann.h ├── tests ├── 001.phpt ├── 002.phpt ├── bug23.phpt ├── fann_cascadetrain_on_data_basic.phpt ├── fann_cascadetrain_on_file_basic.phpt ├── fann_clear_scaling_params_basic.phpt ├── fann_copy_basic.phpt ├── fann_create_from_file_basic.phpt ├── fann_create_shortcut_array_basic.phpt ├── fann_create_shortcut_basic.phpt ├── fann_create_sparse_array_basic.phpt ├── fann_create_sparse_basic.phpt ├── fann_create_standard_array_basic.phpt ├── fann_create_standard_basic.phpt ├── fann_create_train_basic.phpt ├── fann_create_train_from_callback_basic.phpt ├── fann_descale_input_basic.phpt ├── fann_descale_output_basic.phpt ├── fann_descale_train_basic.phpt ├── fann_destroy_basic.phpt ├── fann_destroy_train_basic.phpt ├── fann_duplicate_train_data_basic.phpt ├── fann_get_activation_function_basic.phpt ├── fann_get_activation_steepness_basic.phpt ├── fann_get_bias_array_basic.phpt ├── fann_get_bit_fail_basic.phpt ├── fann_get_bit_fail_limit_basic.phpt ├── fann_get_cascade_activation_functions_basic.phpt ├── fann_get_cascade_activation_functions_count_basic.phpt ├── fann_get_cascade_activation_steepnesses_basic.phpt ├── fann_get_cascade_activation_steepnesses_count_basic.phpt ├── fann_get_cascade_candidate_change_fraction_basic.phpt ├── fann_get_cascade_candidate_limit_basic.phpt ├── fann_get_cascade_candidate_stagnation_epochs_basic.phpt ├── fann_get_cascade_max_cand_epochs_basic.phpt ├── fann_get_cascade_max_out_epochs_basic.phpt ├── fann_get_cascade_min_cand_epochs_basic.phpt ├── fann_get_cascade_min_out_epochs_basic.phpt ├── fann_get_cascade_num_candidate_groups_basic.phpt ├── fann_get_cascade_num_candidates_basic.phpt ├── fann_get_cascade_output_change_fraction_basic.phpt ├── fann_get_cascade_output_stagnation_epochs_basic.phpt ├── fann_get_cascade_weight_multiplier_basic.phpt ├── fann_get_connection_array_basic.phpt ├── fann_get_connection_rate_basic.phpt ├── fann_get_errno_basic.phpt ├── fann_get_errstr_basic.phpt ├── fann_get_layer_array_basic.phpt ├── fann_get_learning_momentum_basic.phpt ├── fann_get_learning_rate_basic.phpt ├── fann_get_mse_basic.phpt ├── fann_get_network_type_basic.phpt ├── fann_get_num_input_basic.phpt ├── fann_get_num_layers_basic.phpt ├── fann_get_num_output_basic.phpt ├── fann_get_quickprop_decay_basic.phpt ├── fann_get_quickprop_mu_basic.phpt ├── fann_get_rprop_decrease_factor_basic.phpt ├── fann_get_rprop_delta_max_basic.phpt ├── fann_get_rprop_delta_min_basic.phpt ├── fann_get_rprop_delta_zero_basic.phpt ├── fann_get_rprop_increase_factor_basic.phpt ├── fann_get_sarprop_step_error_shift_basic.phpt ├── fann_get_sarprop_step_error_threshold_factor_basic.phpt ├── fann_get_sarprop_temperature_basic.phpt ├── fann_get_sarprop_weight_decay_shift_basic.phpt ├── fann_get_total_connections_basic.phpt ├── fann_get_total_neurons_basic.phpt ├── fann_get_train_error_function_basic.phpt ├── fann_get_train_stop_function_basic.phpt ├── fann_get_training_algorithm_basic.phpt ├── fann_init_weights_basic.phpt ├── fann_length_train_data_basic.phpt ├── fann_merge_train_data_basic.phpt ├── fann_num_input_train_data_basic.phpt ├── fann_num_output_train_data_basic.phpt ├── fann_print_error_basic.phpt ├── fann_randomize_weights_basic.phpt ├── fann_read_train_from_file_basic.phpt ├── fann_reset_errno_basic.phpt ├── fann_reset_errstr_basic.phpt ├── fann_reset_mse_basic.phpt ├── fann_run_basic.phpt ├── fann_save_basic.phpt ├── fann_save_train_basic.phpt ├── fann_scale_input_basic.phpt ├── fann_scale_input_train_data_basic.phpt ├── fann_scale_output_basic.phpt ├── fann_scale_output_train_data_basic.phpt ├── fann_scale_train_basic.phpt ├── fann_scale_train_data_basic.phpt ├── fann_set_activation_function_basic.phpt ├── fann_set_activation_function_hidden_basic.phpt ├── fann_set_activation_function_layer_basic.phpt ├── fann_set_activation_function_output_basic.phpt ├── fann_set_activation_steepness_basic.phpt ├── fann_set_activation_steepness_hidden_basic.phpt ├── fann_set_activation_steepness_layer_basic.phpt ├── fann_set_activation_steepness_output_basic.phpt ├── fann_set_bit_fail_limit_basic.phpt ├── fann_set_callback_basic.phpt ├── fann_set_cascade_activation_functions_basic.phpt ├── fann_set_cascade_activation_steepnesses_basic.phpt ├── fann_set_cascade_candidate_change_fraction_basic.phpt ├── fann_set_cascade_candidate_limit_basic.phpt ├── fann_set_cascade_candidate_stagnation_epochs_basic.phpt ├── fann_set_cascade_max_cand_epochs_basic.phpt ├── fann_set_cascade_max_out_epochs_basic.phpt ├── fann_set_cascade_min_cand_epochs_basic.phpt ├── fann_set_cascade_min_out_epochs_basic.phpt ├── fann_set_cascade_num_candidate_groups_basic.phpt ├── fann_set_cascade_output_change_fraction_basic.phpt ├── fann_set_cascade_output_stagnation_epochs_basic.phpt ├── fann_set_cascade_weight_multiplier_basic.phpt ├── fann_set_error_log_basic.phpt ├── fann_set_input_scaling_params_basic.phpt ├── fann_set_learning_momentum_basic.phpt ├── fann_set_learning_rate_basic.phpt ├── fann_set_output_scaling_params_basic.phpt ├── fann_set_quickprop_decay_basic.phpt ├── fann_set_quickprop_mu_basic.phpt ├── fann_set_rprop_decrease_factor_basic.phpt ├── fann_set_rprop_delta_max_basic.phpt ├── fann_set_rprop_delta_min_basic.phpt ├── fann_set_rprop_delta_zero_basic.phpt ├── fann_set_rprop_increase_factor_basic.phpt ├── fann_set_sarprop_step_error_shift_basic.phpt ├── fann_set_sarprop_step_error_threshold_factor_basic.phpt ├── fann_set_sarprop_temperature_basic.phpt ├── fann_set_sarprop_weight_decay_shift_basic.phpt ├── fann_set_scaling_params_basic.phpt ├── fann_set_train_error_function_basic.phpt ├── fann_set_train_stop_function_basic.phpt ├── fann_set_training_algorithm_basic.phpt ├── fann_set_weight_array_basic.phpt ├── fann_set_weight_basic.phpt ├── fann_shuffle_train_data_basic.phpt ├── fann_subset_train_data_basic.phpt ├── fann_test_basic.phpt ├── fann_test_data_basic.phpt ├── fann_train_basic.phpt ├── fann_train_epoch_basic.phpt ├── fann_train_on_data_basic.phpt └── fann_train_on_file_basic.phpt └── utils ├── check_tests.php ├── parameters_filter.awk ├── parameters_generator.php └── train_params.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/.gitmodules -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | fann 2 | Jakub Zelenka 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/TODO.md -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/config.w32 -------------------------------------------------------------------------------- /examples/SplitTrainingData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/SplitTrainingData.php -------------------------------------------------------------------------------- /examples/logic_gates/and.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/logic_gates/and.data -------------------------------------------------------------------------------- /examples/logic_gates/nand.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/logic_gates/nand.data -------------------------------------------------------------------------------- /examples/logic_gates/nor.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/logic_gates/nor.data -------------------------------------------------------------------------------- /examples/logic_gates/not.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/logic_gates/not.data -------------------------------------------------------------------------------- /examples/logic_gates/or.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/logic_gates/or.data -------------------------------------------------------------------------------- /examples/logic_gates/simple_merge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/logic_gates/simple_merge.php -------------------------------------------------------------------------------- /examples/logic_gates/simple_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/logic_gates/simple_test.php -------------------------------------------------------------------------------- /examples/logic_gates/simple_train.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/logic_gates/simple_train.php -------------------------------------------------------------------------------- /examples/logic_gates/simple_train_epoch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/logic_gates/simple_train_epoch.php -------------------------------------------------------------------------------- /examples/logic_gates/test_all.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/logic_gates/test_all.php -------------------------------------------------------------------------------- /examples/logic_gates/train_all.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/logic_gates/train_all.php -------------------------------------------------------------------------------- /examples/logic_gates/xnor.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/logic_gates/xnor.data -------------------------------------------------------------------------------- /examples/logic_gates/xor.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/logic_gates/xor.data -------------------------------------------------------------------------------- /examples/logic_gates/xor_part_1.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/logic_gates/xor_part_1.data -------------------------------------------------------------------------------- /examples/logic_gates/xor_part_2.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/logic_gates/xor_part_2.data -------------------------------------------------------------------------------- /examples/ocr/images/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/0.png -------------------------------------------------------------------------------- /examples/ocr/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/1.png -------------------------------------------------------------------------------- /examples/ocr/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/10.png -------------------------------------------------------------------------------- /examples/ocr/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/11.png -------------------------------------------------------------------------------- /examples/ocr/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/12.png -------------------------------------------------------------------------------- /examples/ocr/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/13.png -------------------------------------------------------------------------------- /examples/ocr/images/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/14.png -------------------------------------------------------------------------------- /examples/ocr/images/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/15.png -------------------------------------------------------------------------------- /examples/ocr/images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/16.png -------------------------------------------------------------------------------- /examples/ocr/images/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/17.png -------------------------------------------------------------------------------- /examples/ocr/images/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/18.png -------------------------------------------------------------------------------- /examples/ocr/images/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/19.png -------------------------------------------------------------------------------- /examples/ocr/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/2.png -------------------------------------------------------------------------------- /examples/ocr/images/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/20.png -------------------------------------------------------------------------------- /examples/ocr/images/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/21.png -------------------------------------------------------------------------------- /examples/ocr/images/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/22.png -------------------------------------------------------------------------------- /examples/ocr/images/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/23.png -------------------------------------------------------------------------------- /examples/ocr/images/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/24.png -------------------------------------------------------------------------------- /examples/ocr/images/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/25.png -------------------------------------------------------------------------------- /examples/ocr/images/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/26.png -------------------------------------------------------------------------------- /examples/ocr/images/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/27.png -------------------------------------------------------------------------------- /examples/ocr/images/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/28.png -------------------------------------------------------------------------------- /examples/ocr/images/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/29.png -------------------------------------------------------------------------------- /examples/ocr/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/3.png -------------------------------------------------------------------------------- /examples/ocr/images/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/30.png -------------------------------------------------------------------------------- /examples/ocr/images/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/31.png -------------------------------------------------------------------------------- /examples/ocr/images/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/32.png -------------------------------------------------------------------------------- /examples/ocr/images/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/33.png -------------------------------------------------------------------------------- /examples/ocr/images/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/34.png -------------------------------------------------------------------------------- /examples/ocr/images/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/35.png -------------------------------------------------------------------------------- /examples/ocr/images/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/36.png -------------------------------------------------------------------------------- /examples/ocr/images/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/37.png -------------------------------------------------------------------------------- /examples/ocr/images/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/38.png -------------------------------------------------------------------------------- /examples/ocr/images/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/39.png -------------------------------------------------------------------------------- /examples/ocr/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/4.png -------------------------------------------------------------------------------- /examples/ocr/images/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/40.png -------------------------------------------------------------------------------- /examples/ocr/images/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/41.png -------------------------------------------------------------------------------- /examples/ocr/images/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/42.png -------------------------------------------------------------------------------- /examples/ocr/images/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/43.png -------------------------------------------------------------------------------- /examples/ocr/images/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/44.png -------------------------------------------------------------------------------- /examples/ocr/images/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/45.png -------------------------------------------------------------------------------- /examples/ocr/images/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/46.png -------------------------------------------------------------------------------- /examples/ocr/images/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/47.png -------------------------------------------------------------------------------- /examples/ocr/images/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/48.png -------------------------------------------------------------------------------- /examples/ocr/images/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/49.png -------------------------------------------------------------------------------- /examples/ocr/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/5.png -------------------------------------------------------------------------------- /examples/ocr/images/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/50.png -------------------------------------------------------------------------------- /examples/ocr/images/51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/51.png -------------------------------------------------------------------------------- /examples/ocr/images/52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/52.png -------------------------------------------------------------------------------- /examples/ocr/images/53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/53.png -------------------------------------------------------------------------------- /examples/ocr/images/54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/54.png -------------------------------------------------------------------------------- /examples/ocr/images/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/55.png -------------------------------------------------------------------------------- /examples/ocr/images/56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/56.png -------------------------------------------------------------------------------- /examples/ocr/images/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/57.png -------------------------------------------------------------------------------- /examples/ocr/images/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/58.png -------------------------------------------------------------------------------- /examples/ocr/images/59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/59.png -------------------------------------------------------------------------------- /examples/ocr/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/6.png -------------------------------------------------------------------------------- /examples/ocr/images/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/60.png -------------------------------------------------------------------------------- /examples/ocr/images/61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/61.png -------------------------------------------------------------------------------- /examples/ocr/images/62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/62.png -------------------------------------------------------------------------------- /examples/ocr/images/63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/63.png -------------------------------------------------------------------------------- /examples/ocr/images/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/64.png -------------------------------------------------------------------------------- /examples/ocr/images/65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/65.png -------------------------------------------------------------------------------- /examples/ocr/images/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/66.png -------------------------------------------------------------------------------- /examples/ocr/images/67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/67.png -------------------------------------------------------------------------------- /examples/ocr/images/68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/68.png -------------------------------------------------------------------------------- /examples/ocr/images/69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/69.png -------------------------------------------------------------------------------- /examples/ocr/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/7.png -------------------------------------------------------------------------------- /examples/ocr/images/70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/70.png -------------------------------------------------------------------------------- /examples/ocr/images/71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/71.png -------------------------------------------------------------------------------- /examples/ocr/images/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/72.png -------------------------------------------------------------------------------- /examples/ocr/images/73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/73.png -------------------------------------------------------------------------------- /examples/ocr/images/74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/74.png -------------------------------------------------------------------------------- /examples/ocr/images/75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/75.png -------------------------------------------------------------------------------- /examples/ocr/images/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/76.png -------------------------------------------------------------------------------- /examples/ocr/images/77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/77.png -------------------------------------------------------------------------------- /examples/ocr/images/78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/78.png -------------------------------------------------------------------------------- /examples/ocr/images/79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/79.png -------------------------------------------------------------------------------- /examples/ocr/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/8.png -------------------------------------------------------------------------------- /examples/ocr/images/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/80.png -------------------------------------------------------------------------------- /examples/ocr/images/81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/81.png -------------------------------------------------------------------------------- /examples/ocr/images/82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/82.png -------------------------------------------------------------------------------- /examples/ocr/images/83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/83.png -------------------------------------------------------------------------------- /examples/ocr/images/84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/84.png -------------------------------------------------------------------------------- /examples/ocr/images/85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/85.png -------------------------------------------------------------------------------- /examples/ocr/images/86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/86.png -------------------------------------------------------------------------------- /examples/ocr/images/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/87.png -------------------------------------------------------------------------------- /examples/ocr/images/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/88.png -------------------------------------------------------------------------------- /examples/ocr/images/89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/89.png -------------------------------------------------------------------------------- /examples/ocr/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/9.png -------------------------------------------------------------------------------- /examples/ocr/images/90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/90.png -------------------------------------------------------------------------------- /examples/ocr/images/91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/91.png -------------------------------------------------------------------------------- /examples/ocr/images/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/92.png -------------------------------------------------------------------------------- /examples/ocr/images/93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/images/93.png -------------------------------------------------------------------------------- /examples/ocr/ocr.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/ocr.data -------------------------------------------------------------------------------- /examples/ocr/test_ocr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/test_ocr.php -------------------------------------------------------------------------------- /examples/ocr/train_ocr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/ocr/train_ocr.php -------------------------------------------------------------------------------- /examples/pathfinder/pathfinder.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/pathfinder/pathfinder.data -------------------------------------------------------------------------------- /examples/pathfinder/pathfinder_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/pathfinder/pathfinder_test.php -------------------------------------------------------------------------------- /examples/pathfinder/pathfinder_train.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/examples/pathfinder/pathfinder_train.php -------------------------------------------------------------------------------- /fann.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/fann.c -------------------------------------------------------------------------------- /fann.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/fann.php -------------------------------------------------------------------------------- /fann_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/fann_connection.c -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/package.xml -------------------------------------------------------------------------------- /php_fann.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/php_fann.h -------------------------------------------------------------------------------- /tests/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/001.phpt -------------------------------------------------------------------------------- /tests/002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/002.phpt -------------------------------------------------------------------------------- /tests/bug23.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/bug23.phpt -------------------------------------------------------------------------------- /tests/fann_cascadetrain_on_data_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_cascadetrain_on_data_basic.phpt -------------------------------------------------------------------------------- /tests/fann_cascadetrain_on_file_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_cascadetrain_on_file_basic.phpt -------------------------------------------------------------------------------- /tests/fann_clear_scaling_params_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_clear_scaling_params_basic.phpt -------------------------------------------------------------------------------- /tests/fann_copy_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_copy_basic.phpt -------------------------------------------------------------------------------- /tests/fann_create_from_file_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_create_from_file_basic.phpt -------------------------------------------------------------------------------- /tests/fann_create_shortcut_array_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_create_shortcut_array_basic.phpt -------------------------------------------------------------------------------- /tests/fann_create_shortcut_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_create_shortcut_basic.phpt -------------------------------------------------------------------------------- /tests/fann_create_sparse_array_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_create_sparse_array_basic.phpt -------------------------------------------------------------------------------- /tests/fann_create_sparse_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_create_sparse_basic.phpt -------------------------------------------------------------------------------- /tests/fann_create_standard_array_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_create_standard_array_basic.phpt -------------------------------------------------------------------------------- /tests/fann_create_standard_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_create_standard_basic.phpt -------------------------------------------------------------------------------- /tests/fann_create_train_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_create_train_basic.phpt -------------------------------------------------------------------------------- /tests/fann_create_train_from_callback_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_create_train_from_callback_basic.phpt -------------------------------------------------------------------------------- /tests/fann_descale_input_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_descale_input_basic.phpt -------------------------------------------------------------------------------- /tests/fann_descale_output_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_descale_output_basic.phpt -------------------------------------------------------------------------------- /tests/fann_descale_train_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_descale_train_basic.phpt -------------------------------------------------------------------------------- /tests/fann_destroy_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_destroy_basic.phpt -------------------------------------------------------------------------------- /tests/fann_destroy_train_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_destroy_train_basic.phpt -------------------------------------------------------------------------------- /tests/fann_duplicate_train_data_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_duplicate_train_data_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_activation_function_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_activation_function_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_activation_steepness_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_activation_steepness_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_bias_array_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_bias_array_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_bit_fail_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_bit_fail_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_bit_fail_limit_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_bit_fail_limit_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_activation_functions_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_activation_functions_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_activation_functions_count_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_activation_functions_count_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_activation_steepnesses_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_activation_steepnesses_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_activation_steepnesses_count_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_activation_steepnesses_count_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_candidate_change_fraction_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_candidate_change_fraction_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_candidate_limit_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_candidate_limit_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_candidate_stagnation_epochs_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_candidate_stagnation_epochs_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_max_cand_epochs_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_max_cand_epochs_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_max_out_epochs_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_max_out_epochs_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_min_cand_epochs_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_min_cand_epochs_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_min_out_epochs_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_min_out_epochs_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_num_candidate_groups_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_num_candidate_groups_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_num_candidates_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_num_candidates_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_output_change_fraction_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_output_change_fraction_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_output_stagnation_epochs_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_output_stagnation_epochs_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_cascade_weight_multiplier_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_cascade_weight_multiplier_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_connection_array_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_connection_array_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_connection_rate_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_connection_rate_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_errno_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_errno_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_errstr_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_errstr_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_layer_array_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_layer_array_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_learning_momentum_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_learning_momentum_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_learning_rate_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_learning_rate_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_mse_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_mse_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_network_type_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_network_type_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_num_input_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_num_input_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_num_layers_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_num_layers_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_num_output_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_num_output_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_quickprop_decay_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_quickprop_decay_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_quickprop_mu_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_quickprop_mu_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_rprop_decrease_factor_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_rprop_decrease_factor_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_rprop_delta_max_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_rprop_delta_max_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_rprop_delta_min_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_rprop_delta_min_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_rprop_delta_zero_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_rprop_delta_zero_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_rprop_increase_factor_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_rprop_increase_factor_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_sarprop_step_error_shift_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_sarprop_step_error_shift_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_sarprop_step_error_threshold_factor_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_sarprop_step_error_threshold_factor_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_sarprop_temperature_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_sarprop_temperature_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_sarprop_weight_decay_shift_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_sarprop_weight_decay_shift_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_total_connections_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_total_connections_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_total_neurons_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_total_neurons_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_train_error_function_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_train_error_function_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_train_stop_function_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_train_stop_function_basic.phpt -------------------------------------------------------------------------------- /tests/fann_get_training_algorithm_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_get_training_algorithm_basic.phpt -------------------------------------------------------------------------------- /tests/fann_init_weights_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_init_weights_basic.phpt -------------------------------------------------------------------------------- /tests/fann_length_train_data_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_length_train_data_basic.phpt -------------------------------------------------------------------------------- /tests/fann_merge_train_data_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_merge_train_data_basic.phpt -------------------------------------------------------------------------------- /tests/fann_num_input_train_data_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_num_input_train_data_basic.phpt -------------------------------------------------------------------------------- /tests/fann_num_output_train_data_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_num_output_train_data_basic.phpt -------------------------------------------------------------------------------- /tests/fann_print_error_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_print_error_basic.phpt -------------------------------------------------------------------------------- /tests/fann_randomize_weights_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_randomize_weights_basic.phpt -------------------------------------------------------------------------------- /tests/fann_read_train_from_file_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_read_train_from_file_basic.phpt -------------------------------------------------------------------------------- /tests/fann_reset_errno_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_reset_errno_basic.phpt -------------------------------------------------------------------------------- /tests/fann_reset_errstr_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_reset_errstr_basic.phpt -------------------------------------------------------------------------------- /tests/fann_reset_mse_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_reset_mse_basic.phpt -------------------------------------------------------------------------------- /tests/fann_run_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_run_basic.phpt -------------------------------------------------------------------------------- /tests/fann_save_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_save_basic.phpt -------------------------------------------------------------------------------- /tests/fann_save_train_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_save_train_basic.phpt -------------------------------------------------------------------------------- /tests/fann_scale_input_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_scale_input_basic.phpt -------------------------------------------------------------------------------- /tests/fann_scale_input_train_data_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_scale_input_train_data_basic.phpt -------------------------------------------------------------------------------- /tests/fann_scale_output_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_scale_output_basic.phpt -------------------------------------------------------------------------------- /tests/fann_scale_output_train_data_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_scale_output_train_data_basic.phpt -------------------------------------------------------------------------------- /tests/fann_scale_train_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_scale_train_basic.phpt -------------------------------------------------------------------------------- /tests/fann_scale_train_data_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_scale_train_data_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_activation_function_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_activation_function_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_activation_function_hidden_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_activation_function_hidden_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_activation_function_layer_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_activation_function_layer_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_activation_function_output_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_activation_function_output_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_activation_steepness_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_activation_steepness_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_activation_steepness_hidden_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_activation_steepness_hidden_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_activation_steepness_layer_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_activation_steepness_layer_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_activation_steepness_output_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_activation_steepness_output_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_bit_fail_limit_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_bit_fail_limit_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_callback_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_callback_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_cascade_activation_functions_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_cascade_activation_functions_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_cascade_activation_steepnesses_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_cascade_activation_steepnesses_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_cascade_candidate_change_fraction_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_cascade_candidate_change_fraction_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_cascade_candidate_limit_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_cascade_candidate_limit_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_cascade_candidate_stagnation_epochs_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_cascade_candidate_stagnation_epochs_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_cascade_max_cand_epochs_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_cascade_max_cand_epochs_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_cascade_max_out_epochs_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_cascade_max_out_epochs_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_cascade_min_cand_epochs_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_cascade_min_cand_epochs_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_cascade_min_out_epochs_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_cascade_min_out_epochs_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_cascade_num_candidate_groups_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_cascade_num_candidate_groups_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_cascade_output_change_fraction_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_cascade_output_change_fraction_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_cascade_output_stagnation_epochs_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_cascade_output_stagnation_epochs_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_cascade_weight_multiplier_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_cascade_weight_multiplier_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_error_log_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_error_log_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_input_scaling_params_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_input_scaling_params_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_learning_momentum_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_learning_momentum_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_learning_rate_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_learning_rate_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_output_scaling_params_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_output_scaling_params_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_quickprop_decay_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_quickprop_decay_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_quickprop_mu_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_quickprop_mu_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_rprop_decrease_factor_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_rprop_decrease_factor_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_rprop_delta_max_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_rprop_delta_max_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_rprop_delta_min_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_rprop_delta_min_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_rprop_delta_zero_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_rprop_delta_zero_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_rprop_increase_factor_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_rprop_increase_factor_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_sarprop_step_error_shift_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_sarprop_step_error_shift_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_sarprop_step_error_threshold_factor_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_sarprop_step_error_threshold_factor_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_sarprop_temperature_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_sarprop_temperature_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_sarprop_weight_decay_shift_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_sarprop_weight_decay_shift_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_scaling_params_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_scaling_params_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_train_error_function_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_train_error_function_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_train_stop_function_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_train_stop_function_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_training_algorithm_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_training_algorithm_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_weight_array_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_weight_array_basic.phpt -------------------------------------------------------------------------------- /tests/fann_set_weight_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_set_weight_basic.phpt -------------------------------------------------------------------------------- /tests/fann_shuffle_train_data_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_shuffle_train_data_basic.phpt -------------------------------------------------------------------------------- /tests/fann_subset_train_data_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_subset_train_data_basic.phpt -------------------------------------------------------------------------------- /tests/fann_test_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_test_basic.phpt -------------------------------------------------------------------------------- /tests/fann_test_data_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_test_data_basic.phpt -------------------------------------------------------------------------------- /tests/fann_train_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_train_basic.phpt -------------------------------------------------------------------------------- /tests/fann_train_epoch_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_train_epoch_basic.phpt -------------------------------------------------------------------------------- /tests/fann_train_on_data_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_train_on_data_basic.phpt -------------------------------------------------------------------------------- /tests/fann_train_on_file_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/tests/fann_train_on_file_basic.phpt -------------------------------------------------------------------------------- /utils/check_tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/utils/check_tests.php -------------------------------------------------------------------------------- /utils/parameters_filter.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/utils/parameters_filter.awk -------------------------------------------------------------------------------- /utils/parameters_generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/utils/parameters_generator.php -------------------------------------------------------------------------------- /utils/train_params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukka/php-fann/HEAD/utils/train_params.txt --------------------------------------------------------------------------------