/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /* * File: Layer.hpp * Author: jens * * Created on 25. Oktober 2019, 08:13 */ #ifndef LAYER_HPP #define LAYER_HPP #include #include #include #include "Rbm.hpp" class Layer { public: Layer(const std::string &prjname, size_t id, size_t numVisible, size_t numHidden); Layer(const Layer& orig); virtual ~Layer(); Json::Value toJson() const; private: const std::string &m_prjname; size_t m_id; Rbm::Params m_rbm_params; Rbm m_rbm; }; #endif /* LAYER_HPP */