我正在尝试在1M样本的数据集上构建一个包含10000个主题的主题模型。加载数据后,我得到这一行:
bin/mallet: line 62: 17428 Killed $JAVA_COMMAND $CLASS $*
。
这是我正在运行的命令:
`bin/mallet train-topics \
--input data.mallet \
--output-model topics.model \
--output-topic-keys topic-keys.txt \
--topic-word-weights-file topic-word-weights.txt \
--word-topic-counts-file word-topic-counts-file.txt \
--output-doc-topics doc-topics.txt \
--num-topics 10000 \
--num-threads 28 \
--num-iterations 2000 \
--use-symmetric-alpha FALSE`
任何建议都表示赞赏。