/*!
*
*
* \brief Typedefs for the Binary-Binary RBM.
*
* \author Oswin Krause Asja Fischer
* \date 1.2014
*
*
* \par Copyright 1995-2017 Shark Development Team
*
*
* This file is part of Shark.
*
*
* Shark is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Shark is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Shark. If not, see .
*
*/
#ifndef SHARK_UNSUPERVISED_RBM_BINARYRBM_H
#define SHARK_UNSUPERVISED_RBM_BINARYRBM_H
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
namespace shark{
typedef RBM BinaryRBM;
typedef GibbsOperator BinaryGibbsOperator;
typedef MarkovChain BinaryGibbsChain;
typedef TemperedMarkovChain BinaryPTChain;
typedef MultiChainApproximator BinaryPCD;
typedef ContrastiveDivergence BinaryCD;
typedef SingleChainApproximator BinaryParallelTempering;
}
#endif