blob: a114140ddd13a22389bbd1e526b6db2d63ef4e55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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__
|