Sha256: 95be619d834bc463b4c6c2346878fc2eca6aa9df660f45c06fc7ad371f91f310
Contents?: true
Size: 522 Bytes
Versions: 5
Compression:
Stored size: 522 Bytes
Contents
#include "DTModel.hpp" namespace tomoto { /*template class DTModel<TermWeight::one>; template class DTModel<TermWeight::idf>; template class DTModel<TermWeight::pmi>;*/ IDTModel* IDTModel::create(TermWeight _weight, size_t _K, size_t _T, Float _alphaVar, Float _etaVar, Float _phiVar, Float _shapeA, Float _shapeB, Float _shapeC, Float _etaRegL2, size_t seed, bool scalarRng) { TMT_SWITCH_TW(_weight, scalarRng, DTModel, _K, _T, _alphaVar, _etaVar, _phiVar, _shapeA, _shapeB, _shapeC, _etaRegL2, seed); } }
Version data entries
5 entries across 5 versions & 1 rubygems