1

I am trying to use hLDA for topic modeling in mallet.Ihave already checked this. Using cmd

bin\mallet train-topics  --input tutorial.mallet 

according to thistutorial. By default LDA topic modeling is being performed. How can I change it into hLDA? Any suggestion would be helpful.

Community
  • 1
  • 1
sibora
  • 11
  • 3
  • I found the answer [here](http://mallet-dev.cs.umass.narkive.com/BfCPOri8/using-mallet-command-tool-to-execute-hda-topic-model). the cmd is: \mallet run cc.mallet.topics.tui.HierarchicalLDATUI --input [FILENAME] --output-state [FILENAME] – sibora Mar 10 '17 at 10:29

1 Answers1

0

Use Mallet version 2.0.7 and then

bin/mallet hlda --input tutorial.mallet

Panda
  • 9
  • 3