diff options
Diffstat (limited to 'SimpleRN.hpp')
-rw-r--r-- | SimpleRN.hpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/SimpleRN.hpp b/SimpleRN.hpp new file mode 100644 index 0000000..6d0cc2c --- /dev/null +++ b/SimpleRN.hpp @@ -0,0 +1,17 @@ +#ifndef __SIMPLERN_HPP__ +#define __SIMPLERN_HPP__ + +#include "SingleMLP.hpp" + +class SimpleRN : public SingleMLP +{ +public: + SimpleRN(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 // __SIMPLERN_HPP__ |