I've used the following command to generate a topic model from some documents:

bin/mallet train-topics --input topic-input.mallet --num-topics 100 --output-state topic-state.gz

I have not, however, used the --output-model option to generate a serialized topic trainer object. Is there any way I can use the state file to infer topics for new documents? Training is slow, and it'll take a couple of days for me to retrain, if I have to create the serialized model from scratch.

link|improve this question

75% accept rate
feedback

1 Answer

Restoring a model from the state file appears to be a new feature in mallet 2.0.7 according to the release notes.

Ability to restore models from gzipped "state" files. From the new TopicTrainer, use the --input-state [filename] argument. Note that you can manually edit this file. Any token with topic set to -1 will be immediately resampled upon loading.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.