Rprop implementation

This commit is contained in:
2016-10-30 23:00:50 +01:00
parent 554ef1b46b
commit 8749b3eb03
5 changed files with 415 additions and 3 deletions

View File

@@ -64,6 +64,7 @@ set (LIBRARY_SOURCES
src/NeuralNetwork/Learning/BackPropagation.cpp
src/NeuralNetwork/Learning/QuickPropagation.cpp
src/NeuralNetwork/Learning/PerceptronLearning.cpp
src/NeuralNetwork/Learning/RProp.cpp
src/NeuralNetwork/ConstructiveAlgorithms/CascadeCorrelation.cpp
src/NeuralNetwork/ConstructiveAlgorithms/Cascade2.cpp
@@ -118,6 +119,9 @@ IF(ENABLE_TESTS)
add_test(quickpropagation tests/quickpropagation)
set_property(TEST quickpropagation PROPERTY LABELS unit)
add_test(rprop tests/rprop)
set_property(TEST rprop PROPERTY LABELS unit)
add_test(recurrent tests/recurrent)
set_property(TEST recurrent PROPERTY LABELS unit)
@@ -136,8 +140,5 @@ IF(ENABLE_TESTS)
add_test(recurrent_perf tests/recurrent_perf)
set_property(TEST recurrent_perf PROPERTY LABELS perf)
add_test(genetic_programing tests/genetic_programing)
set_property(TEST genetic_programing PROPERTY LABELS unit)
ENDIF(ENABLE_TESTS)