TMVA Studies
- This is tested in CMSSW_9_0_1 having root version 6.08/05
The source of this error is the decorrelation. In the default example many decorrelation functions are switched on but for BDT we don't need them at all. So, we need to skip the decorrelation part. The default line in TMVA where this correlation was called is:
TMVA::Factory *factory = new TMVA::Factory( "TMVAClassification", outputFile, "!V:!Silent:Color:DrawProgressBar:Transformations=I;D;P;G,D:AnalysisType=Classification" );
In the above line we need to change Transformations=I;D;P;G,D
to Transformations=I
(where I is for identity transformation).
To do this we need to make cut on variable. Presently, no other better option we get.