IO class as parrent of Solution and Problem

This commit is contained in:
2014-12-03 18:58:28 +01:00
parent 41c92cc3c0
commit 993b4d3f04
14 changed files with 134 additions and 62 deletions

View File

@@ -33,7 +33,7 @@ int main()
s.push_back(Shin::NeuronNetwork::Solution(std::vector<float>({1})));
p.push_back(X(std::vector<float>({1,1})));
Shin::NeuronNetwork::FeedForwardNetworkQuick q({2,4,1});
Shin::NeuronNetwork::FeedForwardNetworkQuick q({2,2,4,1});
Shin::NeuronNetwork::Learning::BackPropagation b(q);
b.debugOn();