Sha256: 5b5e8bd309994928d9496fd772e27382f2217617e2607dfb203c9a950401020f

Contents?: true

Size: 462 Bytes

Versions: 3

Compression:

Stored size: 462 Bytes

Contents

#include "LDAModel.hpp"

namespace tomoto
{
    DEFINE_OUT_SERIALIZER_AFTER_BASE_WITH_VERSION(DocumentLDA, DocumentBase, 0, Zs, wordWeights);
    DEFINE_OUT_TAGGED_SERIALIZER_AFTER_BASE_WITH_VERSION(DocumentLDA, DocumentBase, 1, 0x00010001, Zs, wordWeights);

    TMT_INSTANTIATE_DOC(DocumentLDA);

    ILDAModel* ILDAModel::create(TermWeight _weight, const LDAArgs& args, bool scalarRng)
    {
        TMT_SWITCH_TW(_weight, scalarRng, LDAModel, args);
    }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tomoto-0.5.1 vendor/tomotopy/src/TopicModel/LDAModel.cpp
tomoto-0.5.0 vendor/tomotopy/src/TopicModel/LDAModel.cpp
tomoto-0.4.1 vendor/tomotopy/src/TopicModel/LDAModel.cpp