aboutsummaryrefslogtreecommitdiff
path: root/include/HyperNeat/NeuralNetPrms.hpp
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2024-02-29 19:04:34 +0100
committerPaul Oliver <contact@pauloliver.dev>2024-02-29 19:16:14 +0100
commite6ab4a8ed100d5d5b7611c74cf3ccd556f1f1d71 (patch)
tree129cf13c2f9b3eae54402300db4570815789a02a /include/HyperNeat/NeuralNetPrms.hpp
Initial commitHEADmaster
Diffstat (limited to 'include/HyperNeat/NeuralNetPrms.hpp')
-rw-r--r--include/HyperNeat/NeuralNetPrms.hpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/HyperNeat/NeuralNetPrms.hpp b/include/HyperNeat/NeuralNetPrms.hpp
new file mode 100644
index 0000000..fb5c349
--- /dev/null
+++ b/include/HyperNeat/NeuralNetPrms.hpp
@@ -0,0 +1,25 @@
+#ifndef __HYPERNEAT_NEURALNETPRMS_HPP__
+#define __HYPERNEAT_NEURALNETPRMS_HPP__
+
+#include <HyperNeat/Utils/Size.hpp>
+#include <HyperNeat/Utils/Point.hpp>
+#include <HyperNeat/Utils/Vector.hpp>
+
+namespace hyperneat
+{
+ class NeuralNetPrms
+ {
+ public:
+ Vector<Point> _inputMap;
+ Vector<Point> _outputMap;
+ size_t _testGridLevel = 3;
+ size_t _maxQuadTreeLevel = SIZE_MAX;
+ size_t _minQuadTreeLevel = 0;
+ double _bandPruningThreshold = 0.3;
+ double _varianceThreshold = 0.03;
+ double _divisionThreshold = 0.03;
+ size_t _iterations = SIZE_MAX;
+ };
+}
+
+#endif