@@ -26,10 +26,9 @@ if "%CMD%"=="train-classifier" set CLASS=cc.mallet.classify.tui.Vectors2Classify
26
26
if " %CMD% " == " classify-dir" set CLASS = cc.mallet.classify.tui.Text2Classify
27
27
if " %CMD% " == " classify-file" set CLASS = cc.mallet.classify.tui.Csv2Classify
28
28
if " %CMD% " == " classify-svmlight" set CLASS = cc.mallet.classify.tui.SvmLight2Classify
29
- if " %CMD% " == " train-topics" set CLASS = cc.mallet.topics.tui.Vectors2Topics
29
+ if " %CMD% " == " train-topics" set CLASS = cc.mallet.topics.tui.TopicTrainer
30
30
if " %CMD% " == " infer-topics" set CLASS = cc.mallet.topics.tui.InferTopics
31
31
if " %CMD% " == " evaluate-topics" set CLASS = cc.mallet.topics.tui.EvaluateTopics
32
- if " %CMD% " == " hlda" set CLASS = cc.mallet.topics.tui.HierarchicalLDATUI
33
32
if " %CMD% " == " prune" set CLASS = cc.mallet.classify.tui.Vectors2Vectors
34
33
if " %CMD% " == " split" set CLASS = cc.mallet.classify.tui.Vectors2Vectors
35
34
if " %CMD% " == " bulk-load" set CLASS = cc.mallet.util.BulkLoader
@@ -49,9 +48,9 @@ echo classify-svmlight classify data from a single file in SVMLight format
49
48
echo train-topics train a topic model from Mallet data files
50
49
echo infer-topics use a trained topic model to infer topics for new documents
51
50
echo evaluate-topics estimate the probability of new documents given a trained model
52
- echo hlda train a topic model using Hierarchical LDA
53
51
echo prune remove features based on frequency or information gain
54
52
echo split divide data into testing, training, and validation portions
53
+ echo bulk-load for big input files, efficiently prune vocabulary and import docs
55
54
echo Include --help with any option for more information
56
55
57
56
0 commit comments