From 6fd23da97fa9700f59c61a966b4bf7d25fa46b34 Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Thu, 29 Feb 2024 03:15:03 +0100 Subject: initial commit --- FullyRN.hpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 FullyRN.hpp (limited to 'FullyRN.hpp') 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 io(const std::vector &inputs); + +private: + std::vector m_context; +}; + +#endif // __FULLYRN_HPP__ -- cgit v1.2.1