I am experimenting with the Pachinko topic model in Mallet, and am having trouble getting it working. When it prints out the topics at each update, they are all the same. This occurs when I use both the default alpha and beta values, and when I use my own. I haven't been able to find that much written about Mallet's Pachinko model, and their documentation is pretty sparse. Here is my code with my parameters:
PAM4L model = new PAM4L(superTopics: 25, subTopics: 5);
String output = new String("output");
Randoms rand = new Randoms(4);
model.estimate(InstanceList: instances, iterations: 500,
optimizeInterval: 5,showTopicsInterval: 50,
outputModelInterval: 50, outputFile: output, r: rand);
Thank you