added feedForward and moving Reccurent neuron to normal

This commit is contained in:
2016-01-28 22:17:36 +01:00
parent 13b179dd57
commit 3e383e9add
12 changed files with 265 additions and 252 deletions

View File

@@ -2,7 +2,7 @@ include ../Makefile.const
LIB_DIR = ../lib
ALL_TESTS=activation basis recurrent recurrent_join
ALL_TESTS=activation basis recurrent feedforward
#LIBS=$(LIB_DIR)/Genetics.a $(LIB_DIR)/NeuralNetwork.a
#LIBS=-lGenetics.so -lNeuronNetwork

View File

@@ -17,6 +17,4 @@ int main() {
float res= a.computeOutput({1,0.7})[0];
assert(res > solutions[i]*0.999 && res < solutions[i]*1.001);
}
std::cout << a;
}