Files
Rbm/source/RnnStack.cpp
T
jens 51e6eef12e - refactored
git-svn-id: http://moon:8086/svn/software/trunk/projects/Rbm@824 b431acfa-c32f-4a4a-93f1-934dc6c82436
2022-01-17 20:22:10 +00:00

35 lines
580 B
C++

/*
* 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()
{
}
void RnnStack::train(const arma::mat& batch, Rbm::IListener* pListener)
{
}
void RnnStack::train(size_t layerId, const arma::mat& batch, Rbm::IListener* pListener)
{
}