Command Line Other Option Tutorial
To specify anything on the command line you can use the
-other option. The way to do this is specify the path name and what it
equals. For example: to set history size:
-other learner.historySize=3
or to change the numberOfEpochs in the SequenceClassifierLearner
-other learner.sequenceClassifierLearner.numberOfEpochs=10
Basically all one has to do is look in the gui and
see all the property names, every time you press the edit button you need to
add the property you are editing to the path. So if you want to edit
something in learner you can specify -other learner.PROPERTY_NAME.
Also here is how to specify a class with the other option:
-other learner.spanFeatureExtractor="ui.Recommended.DocumentFE"
To find the correct class names look at the gui or javadocs to see what options are available and there full
class name.