Skip to content

Commit bb0dda9

Browse files
committed
moving windows .bat to new topic trainer
1 parent 83746c8 commit bb0dda9

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

bin/mallet

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ Mallet 2.0 commands:
3030
train-topics train a topic model from Mallet data files
3131
infer-topics use a trained topic model to infer topics for new documents
3232
evaluate-topics estimate the probability of new documents under a trained model
33-
hlda train a topic model using Hierarchical LDA
3433
prune remove features based on frequency or information gain
3534
split divide data into testing, training, and validation portions
35+
bulk-load for big input files, efficiently prune vocabulary and import docs
3636
3737
Include --help with any option for more information
3838
EOF
@@ -52,7 +52,6 @@ case $CMD in
5252
train-topics) CLASS=cc.mallet.topics.tui.TopicTrainer;;
5353
infer-topics) CLASS=cc.mallet.topics.tui.InferTopics;;
5454
evaluate-topics) CLASS=cc.mallet.topics.tui.EvaluateTopics;;
55-
hlda) CLASS=cc.mallet.topics.tui.HierarchicalLDATUI;;
5655
prune) CLASS=cc.mallet.classify.tui.Vectors2Vectors;;
5756
split) CLASS=cc.mallet.classify.tui.Vectors2Vectors;;
5857
bulk-load) CLASS=cc.mallet.util.BulkLoader;;

bin/mallet.bat

+2-3
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@ if "%CMD%"=="train-classifier" set CLASS=cc.mallet.classify.tui.Vectors2Classify
2626
if "%CMD%"=="classify-dir" set CLASS=cc.mallet.classify.tui.Text2Classify
2727
if "%CMD%"=="classify-file" set CLASS=cc.mallet.classify.tui.Csv2Classify
2828
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
3030
if "%CMD%"=="infer-topics" set CLASS=cc.mallet.topics.tui.InferTopics
3131
if "%CMD%"=="evaluate-topics" set CLASS=cc.mallet.topics.tui.EvaluateTopics
32-
if "%CMD%"=="hlda" set CLASS=cc.mallet.topics.tui.HierarchicalLDATUI
3332
if "%CMD%"=="prune" set CLASS=cc.mallet.classify.tui.Vectors2Vectors
3433
if "%CMD%"=="split" set CLASS=cc.mallet.classify.tui.Vectors2Vectors
3534
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
4948
echo train-topics train a topic model from Mallet data files
5049
echo infer-topics use a trained topic model to infer topics for new documents
5150
echo evaluate-topics estimate the probability of new documents given a trained model
52-
echo hlda train a topic model using Hierarchical LDA
5351
echo prune remove features based on frequency or information gain
5452
echo split divide data into testing, training, and validation portions
53+
echo bulk-load for big input files, efficiently prune vocabulary and import docs
5554
echo Include --help with any option for more information
5655

5756

0 commit comments

Comments
 (0)