aboutsummaryrefslogtreecommitdiff
path: root/FullyRN.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'FullyRN.hpp')
-rw-r--r--FullyRN.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/FullyRN.hpp b/FullyRN.hpp
new file mode 100644
index 0000000..a114140
--- /dev/null
+++ b/FullyRN.hpp
@@ -0,0 +1,17 @@
+#ifndef __FULLYRN_HPP__
+#define __FULLYRN_HPP__
+
+#include "DualMLP.hpp"
+
+class FullyRN : public DualMLP
+{
+public:
+ FullyRN(unsigned inputCount, unsigned hiddenNodeCount, unsigned outputCount, NodeClass nodeClass, bool zeroed = false);
+
+ std::vector<float> io(const std::vector<float> &inputs);
+
+private:
+ std::vector<float> m_context;
+};
+
+#endif // __FULLYRN_HPP__