Sha256: 72bfc69ef8742b5d736cc26b1ad4e942d0a42c4fa8715f2e4f24af5639386f70
Contents?: true
Size: 427 Bytes
Versions: 5
Compression:
Stored size: 427 Bytes
Contents
#pragma once #include "LLDA.h" namespace tomoto { class IPLDAModel : public ILLDAModel { public: using DefaultDocType = DocumentLLDA<TermWeight::one>; static IPLDAModel* create(TermWeight _weight, size_t _numLatentTopics = 0, size_t _numTopicsPerLabel = 1, Float alpha = 0.1, Float eta = 0.01, size_t seed = std::random_device{}(), bool scalarRng = false); virtual size_t getNumLatentTopics() const = 0; }; }
Version data entries
5 entries across 5 versions & 1 rubygems