In Weka when classifying test data with a model, getting the Illegal options exception -


when running weka classifier on new test data, model created earlier, i'm getting vague illegal options exception,

java -cp ~/weka/weka.jar weka.classifiers.meta.adaboostm1    \ > -t dataset.2015-06-16t192725.test.arff  \ > -l dataset.2015-06-16t192725.train.model   weka exception: illegal options:     general options:  -h or -help .... 

i realized command, , many others, order of arguments in weka matters.

when changed command below, result good,

java -cp ~/weka/weka.jar weka.classifiers.meta.adaboostm1    \ > -l dataset.2015-06-16t192725.train.model \ > -t dataset.2015-06-16t192725.test.arff  

Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -