scalda icon indicating copy to clipboard operation
scalda copied to clipboard

Topic Modeling with LDA in Scala and Spark

Results 1 scalda issues
Sort by recently updated
recently updated
newest added

Saving the model as: ``` val lda = LocalOnlineLda( OnlineLdaParams( vocabulary = lines(vocabFile).toIndexedSeq, alpha = 1.0/numTopics, eta = 1.0/numTopics, decay = 128, learningRate = 0.7, maxIter = 1000, convergenceThreshold =...