BackPropagation works!

This commit is contained in:
2014-11-11 11:12:04 +01:00
parent 75ca9bc21f
commit 9ef4274396
29 changed files with 519 additions and 170 deletions

View File

@@ -1,4 +1,6 @@
OBJFILES=./Solution.o ./Problem.o ./Network.o ./Neuron.o ./FeedForward.o ./FeedForwardQuick.o
OBJFILES= Neuron.o ./Network.o FeedForward.o FeedForwardQuick.o \
Learning/Supervised.o Learning/Unsupervised.o Learning/Reinforcement.o Learning/BackPropagation.o \
./Solution.o ./Problem.o
LIBNAME=NeuronNetwork
@@ -18,4 +20,4 @@ $(LIBNAME).a: $(OBJFILES)
nm --demangle $(LIBNAME).a > $(LIBNAME).nm
clean:
@rm -f ./*.o ./*.so ./*.a ./*.nm
@rm -f ./*.o ./*.so ./*.a ./*.nm ./*/*.o