Conventions:
Every option (instance of optparse.Option) has prefix "opt". Lists of options
has prefix opts (e.g. optsCommon).
Option name should be camelbacked version of .dest for the option.
|
parser = OptionParser(add_help_option= False, conflict_handler...
|
|
optHelp = <Option at 0x88ad74c: -h/--help/--sos>
|
|
optVerbose = <Option at 0x88ad72c: -v/--verbose/--verbosity>
Pre-cooked optparse 's option to specify verbose level
|
|
optsCommon = OptionGroup(parser, title= "Generic")
|
|
optDebug = <Option at 0x88ad78c: -d/--debug>
|
|
optClf = <Option at 0x88ad7ac: --clf>
|
|
optRadius = <Option at 0x88ad7ec: -r/--radius>
|
|
optKNearestDegree = <Option at 0x88ad84c: -k/--k-nearest>
|
|
optsKNN = OptionGroup(parser, "Specification of kNN")
|
|
optSVMC = <Option at 0x88ad90c: -C/--svm-C>
|
|
optSVMNu = <Option at 0x88ad94c: --nu/--svm-nu>
|
|
optSVMGamma = <Option at 0x88ad9ac: --gamma/--svm-gamma>
|
|
optsSVM = OptionGroup(parser, "SVM specification")
|
|
optCrossfoldDegree = <Option at 0x88ada6c: -c/--crossfold>
|
|
optsGener = OptionGroup(parser, "Generalization estimates")
|
|
optZScore = <Option at 0x88adb0c: --zscore>
|
|
optTr = <Option at 0x88adb4c: --tr>
|
|
optDetrend = <Option at 0x88adbac: --detrend>
|
|
optsPreproc = OptionGroup(parser, "Preprocessing options")
|
|
optBoxLength = <Option at 0x88adc6c: --boxlength>
|
|
optBoxOffset = <Option at 0x88adcac: --boxoffset>
|
|
optsBox = OptionGroup(parser, "Box options")
|
|
optChunk = <Option at 0x88add6c: --chunk>
|
|
optChunkLimits = <Option at 0x88addac: --chunklimits>
|
|
optsChunk = OptionGroup(parser, "Chunk options AKA Sample attr...
|