/* * 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: RnnStack.cpp * Author: jens * * Created on 17. Januar 2022, 12:43 */ #include "RnnStack.hpp" RnnStack::RnnStack(const std::string &name) : AStack(StackType::Rnn, name) { } RnnStack::RnnStack(const std::string &name, Json::Value& layers, LayerConstructor* pLayerConstructor) : AStack(StackType::Rnn, name, layers, pLayerConstructor) { } RnnStack::~RnnStack() { } void RnnStack::train(const arma::mat& batch, Rbm::IListener* pListener) { } void RnnStack::train(size_t layerId, const arma::mat& batch, Rbm::IListener* pListener) { }