RNN: size
This commit is contained in:
@@ -66,6 +66,10 @@ set (LIBRARY_SOURCES
|
||||
|
||||
src/NeuralNetwork/Neuron.cpp
|
||||
src/NeuralNetwork/IMPL.cpp
|
||||
|
||||
src/NeuralNetwork/ConstructiveAlgorithms/CellularEncoding/CellularEncoding.cpp
|
||||
src/NeuralNetwork/ConstructiveAlgorithms/CellularEncoding/Cell.cpp
|
||||
src/NeuralNetwork/ConstructiveAlgorithms/CellularEncoding/GeneticProgramming.cpp
|
||||
)
|
||||
|
||||
add_library(NeuralNetwork STATIC ${LIBRARY_SOURCES})
|
||||
@@ -84,6 +88,8 @@ IF(ENABLE_TESTS)
|
||||
|
||||
enable_testing()
|
||||
|
||||
add_executable(activation tests/activation.cpp)
|
||||
target_link_libraries(activation NeuralNetwork gtest gtest_main)
|
||||
add_test(activation tests/backpropagation)
|
||||
set_property(TEST activation PROPERTY LABELS unit)
|
||||
|
||||
@@ -126,4 +132,10 @@ IF(ENABLE_TESTS)
|
||||
add_test(recurrent_perf tests/recurrent_perf)
|
||||
set_property(TEST recurrent_perf PROPERTY LABELS perf)
|
||||
|
||||
add_test(celular_code tests/celular_code)
|
||||
set_property(TEST celular_code PROPERTY LABELS unit)
|
||||
|
||||
add_test(genetic_programing tests/genetic_programing)
|
||||
set_property(TEST genetic_programing PROPERTY LABELS unit)
|
||||
|
||||
ENDIF(ENABLE_TESTS)
|
||||
|
||||
Reference in New Issue
Block a user