63 fTuneParameters(tuneParameters),
65 fOptimizationFitType(optimizationFitType),
72 std::string
name =
"OptimizeConfigParameters_";
75 if (fMethod->DoRegression()){
76 Log() << kFATAL <<
" ERROR: Sorry, Regression is not yet implement for automatic parameter optimization"
77 <<
" --> exit" <<
Endl;
80 Log() << kINFO <<
"Automatic optimisation of tuning parameters in "
83 std::map<TString,TMVA::Interval*>::iterator it;
84 for (it=fTuneParameters.begin(); it!=fTuneParameters.end();it++) {
85 Log() << kINFO << it->first
86 <<
" in range from: " << it->second->GetMin()
87 <<
" to: " << it->second->GetMax()
88 <<
" in : " << it->second->GetNbins() <<
" steps"
91 Log() << kINFO <<
" using the options: " << fFOMType <<
" and " << fOptimizationFitType <<
Endl;
109 if (ymin>y[i]) ymin=y[i];
110 if (ymax<y[i]) ymax=y[i];
130 if (fOptimizationFitType ==
"Scan" ) this->optimizeScan();
131 else if (fOptimizationFitType ==
"FitGA" || fOptimizationFitType ==
"Minuit" ) this->optimizeFit();
133 Log() << kFATAL <<
"You have chosen as optimization type " << fOptimizationFitType
134 <<
" that is not (yet) coded --> exit()" <<
Endl;
137 Log() << kINFO <<
"For " <<
GetMethod()->GetName() <<
" the optimized Parameters are: " <<
Endl;
138 std::map<TString,Double_t>::iterator it;
139 for(it=fTunedParameters.begin(); it!= fTunedParameters.end(); it++){
140 Log() << kINFO << it->first <<
" = " << it->second <<
Endl;
142 return fTunedParameters;
151 std::vector < int > indices;
152 for (
UInt_t i=0; i< base.size(); i++){
153 indices.push_back(val % base[i] );
154 val = int(
floor(
float(val) /
float(base[i]) ) );
168 Double_t bestFOM=-1000000, currentFOM;
170 std::map<TString,Double_t> currentParameters;
171 std::map<TString,TMVA::Interval*>::iterator it;
175 currentParameters.clear();
176 fTunedParameters.clear();
178 for (it=fTuneParameters.begin(); it!=fTuneParameters.end(); it++){
179 currentParameters.insert(std::pair<TString,Double_t>(it->first,it->second->GetMin()));
180 fTunedParameters.insert(std::pair<TString,Double_t>(it->first,it->second->GetMin()));
187 std::vector< std::vector <Double_t> >
v;
188 for (it=fTuneParameters.begin(); it!=fTuneParameters.end(); it++){
189 std::vector< Double_t > tmp;
190 for (
Int_t k=0; k<it->second->GetNbins(); k++){
191 tmp.push_back(it->second->GetElement(k));
196 std::vector< int > Nindividual;
197 for (
UInt_t i=0; i<v.size(); i++) {
199 Nindividual.push_back(v[i].size());
203 for (
int i=0; i<Ntot; i++){
205 std::vector<int> indices = GetScanIndices(i, Nindividual );
206 for (it=fTuneParameters.begin(), index=0; index< indices.size(); index++, it++){
207 currentParameters[it->first] = v[index][indices[index]];
209 Log() << kINFO <<
"--------------------------" <<
Endl;
210 Log() << kINFO <<
"Settings being evaluated:" <<
Endl;
211 for (std::map<TString,Double_t>::iterator it_print=currentParameters.begin();
212 it_print!=currentParameters.end(); it_print++){
213 Log() << kINFO <<
" " << it_print->first <<
" = " << it_print->second <<
Endl;
217 GetMethod()->SetTuneParameters(currentParameters);
220 if (i==0)
GetMethod()->GetTransformationHandler().CalcTransformations(
225 currentFOM = GetFOM();
226 Log() << kINFO <<
"FOM was found : " << currentFOM <<
"; current best is " << bestFOM <<
Endl;
228 if (currentFOM > bestFOM) {
229 bestFOM = currentFOM;
230 for (std::map<TString,Double_t>::iterator iter=currentParameters.begin();
231 iter != currentParameters.end(); iter++){
232 fTunedParameters[iter->first]=iter->second;
238 GetMethod()->SetTuneParameters(fTunedParameters);
246 std::vector<TMVA::Interval*> ranges;
247 std::map<TString, TMVA::Interval*>::iterator it;
248 std::vector<Double_t> pars;
250 for (it=fTuneParameters.begin(); it != fTuneParameters.end(); it++){
252 pars.push_back( (it->second)->GetMean() );
264 if ( fOptimizationFitType ==
"Minuit" ) {
267 "FitterMinuit_BDTOptimize",
269 }
else if ( fOptimizationFitType ==
"FitGA" ) {
270 TString opt=
"PopSize=20:Steps=30:Cycles=3:ConvCrit=0.01:SaveBestCycle=5";
272 "FitterGA_BDTOptimize",
275 Log() << kWARNING <<
" you did not specify a valid OptimizationFitType "
276 <<
" will use the default (FitGA) " <<
Endl;
277 TString opt=
"PopSize=20:Steps=30:Cycles=3:ConvCrit=0.01:SaveBestCycle=5";
279 "FitterGA_BDTOptimize",
289 for (
UInt_t ipar=0; ipar<ranges.size(); ipar++)
delete ranges[ipar];
293 fTunedParameters.clear();
295 for (it=fTuneParameters.begin(); it!=fTuneParameters.end(); it++){
296 fTunedParameters.insert(std::pair<TString,Double_t>(it->first,pars[jcount++]));
299 GetMethod()->SetTuneParameters(fTunedParameters);
308 std::map< std::vector<Double_t> ,
Double_t>::const_iterator iter;
309 iter = fAlreadyTrainedParCombination.find(pars);
311 if (iter != fAlreadyTrainedParCombination.end()) {
317 std::map<TString,Double_t> currentParameters;
320 std::map<TString, TMVA::Interval*>::iterator it;
321 for (it=fTuneParameters.begin(); it!=fTuneParameters.end(); it++){
322 currentParameters[it->first] = pars[icount++];
325 GetMethod()->SetTuneParameters(currentParameters);
330 CalcTransformations(
GetMethod()->
Data()->GetEventCollection());
340 fAlreadyTrainedParCombination.insert(std::make_pair(pars,-currentFOM));
352 if (fMethod->DoRegression()){
353 std::cout <<
" ERROR: Sorry, Regression is not yet implement for automatic parameter optimisation"
354 <<
" --> exit" << std::endl;
357 if (fFOMType ==
"Separation") fom = GetSeparation();
358 else if (fFOMType ==
"ROCIntegral") fom = GetROCIntegral();
359 else if (fFOMType ==
"SigEffAtBkgEff01") fom = GetSigEffAtBkgEff(0.1);
360 else if (fFOMType ==
"SigEffAtBkgEff001") fom = GetSigEffAtBkgEff(0.01);
361 else if (fFOMType ==
"SigEffAtBkgEff002") fom = GetSigEffAtBkgEff(0.02);
362 else if (fFOMType ==
"BkgRejAtSigEff05") fom = GetBkgRejAtSigEff(0.5);
363 else if (fFOMType ==
"BkgEffAtSigEff05") fom = GetBkgEffAtSigEff(0.5);
365 Log()<<kFATAL <<
" ERROR, you've specified as Figure of Merit in the "
366 <<
" parameter optimisation " << fFOMType <<
" which has not"
367 <<
" been implemented yet!! ---> exit " <<
Endl;
370 fFOMvsIter.push_back(fom);
380 if (fMvaSig) fMvaSig->Delete();
381 if (fMvaBkg) fMvaBkg->Delete();
382 if (fMvaSigFineBin) fMvaSigFineBin->Delete();
383 if (fMvaBkgFineBin) fMvaBkgFineBin->Delete();
391 fMvaSig =
new TH1D(
"fMvaSig",
"",100,-1.5,1.5);
392 fMvaBkg =
new TH1D(
"fMvaBkg",
"",100,-1.5,1.5);
393 fMvaSigFineBin =
new TH1D(
"fMvaSigFineBin",
"",100000,-1.5,1.5);
394 fMvaBkgFineBin =
new TH1D(
"fMvaBkgFineBin",
"",100000,-1.5,1.5);
396 const std::vector< Event*> events=fMethod->Data()->GetEventCollection(
Types::kTesting);
398 UInt_t signalClassNr = fMethod->DataInfo().GetClassInfo(
"Signal")->GetNumber();
402 for (
UInt_t iev=0; iev < events.size() ; iev++){
406 if (events[iev]->
GetClass() == signalClassNr) {
407 fMvaSig->Fill(fMethod->GetMvaValue(events[iev]),events[iev]->GetWeight());
408 fMvaSigFineBin->Fill(fMethod->GetMvaValue(events[iev]),events[iev]->GetWeight());
410 fMvaBkg->Fill(fMethod->GetMvaValue(events[iev]),events[iev]->GetWeight());
411 fMvaBkgFineBin->Fill(fMethod->GetMvaValue(events[iev]),events[iev]->GetWeight());
427 std::cout <<
"Separation calculation via histograms (not PDFs) seems to give still strange results!! Don't do that, check!!"<<std::endl;
458 for (
UInt_t i=0; i<nsteps; i++){
465 if ( (fMvaSigFineBin->GetXaxis()->GetXmin() != fMvaBkgFineBin->GetXaxis()->GetXmin()) ||
466 (fMvaSigFineBin->GetNbinsX() != fMvaBkgFineBin->GetNbinsX()) ){
467 std::cout <<
" Error in OptimizeConfigParameters GetROCIntegral, unequal histograms for sig and bkg.." << std::endl;
471 Double_t *cumulator = fMvaBkgFineBin->GetIntegral();
478 sigIntegral += fMvaSigFineBin->GetBinContent(ibin) * fMvaSigFineBin->GetBinWidth(ibin);
483 integral += (cumulator[ibin]) * fMvaSigFineBin->GetBinContent(ibin)/sigIntegral * fMvaSigFineBin->GetBinWidth(ibin) ;
500 if ( (fMvaSigFineBin->GetXaxis()->GetXmin() != fMvaBkgFineBin->GetXaxis()->GetXmin()) ||
501 (fMvaSigFineBin->GetNbinsX() != fMvaBkgFineBin->GetNbinsX()) ){
502 std::cout <<
" Error in OptimizeConfigParameters GetSigEffAt, unequal histograms for sig and bkg.." << std::endl;
505 Double_t *bkgCumulator = fMvaBkgFineBin->GetIntegral();
506 Double_t *sigCumulator = fMvaSigFineBin->GetIntegral();
517 while (bkgCumulator[nbins-ibin] > (1-bkgEff)) {
518 sigEff = sigCumulator[
nbins]-sigCumulator[nbins-ibin];
537 if ( (fMvaSigFineBin->GetXaxis()->GetXmin() != fMvaBkgFineBin->GetXaxis()->GetXmin()) ||
538 (fMvaSigFineBin->GetNbinsX() != fMvaBkgFineBin->GetNbinsX()) ){
539 std::cout <<
" Error in OptimizeConfigParameters GetBkgEffAt, unequal histograms for sig and bkg.." << std::endl;
543 Double_t *bkgCumulator = fMvaBkgFineBin->GetIntegral();
544 Double_t *sigCumulator = fMvaSigFineBin->GetIntegral();
555 while ( sigCumulator[nbins]-sigCumulator[nbins-ibin] < sigEff) {
556 bkgEff = bkgCumulator[
nbins]-bkgCumulator[nbins-ibin];
574 if ( (fMvaSigFineBin->GetXaxis()->GetXmin() != fMvaBkgFineBin->GetXaxis()->GetXmin()) ||
575 (fMvaSigFineBin->GetNbinsX() != fMvaBkgFineBin->GetNbinsX()) ){
576 std::cout <<
" Error in OptimizeConfigParameters GetBkgEffAt, unequal histograms for sig and bkg.." << std::endl;
580 Double_t *bkgCumulator = fMvaBkgFineBin->GetIntegral();
581 Double_t *sigCumulator = fMvaSigFineBin->GetIntegral();
592 while ( sigCumulator[nbins]-sigCumulator[nbins-ibin] < sigEff) {
593 bkgRej = bkgCumulator[nbins-ibin];
virtual Int_t Write(const char *name=0, Int_t option=0, Int_t bufsize=0)
Write this object to the current directory.
std::string GetName(const std::string &scope_name)
MsgLogger & Endl(MsgLogger &ml)
Base class for TMVA fitters.
void CheckForUnusedOptions() const
checks for unused options in option string
virtual void SetName(const char *name)
Set the name of the TNamed.
Virtual base Class for all MVA method.
Double_t GetSeparation()
return the separation between the signal and background MVA ouput distribution
void optimizeScan()
do the actual optimization using a simple scan method, i.e.
Short_t Min(Short_t a, Short_t b)
virtual void SetYTitle(const char *title)
Double_t GetFOM()
Return the Figure of Merit (FOM) used in the parameter optimization process.
static void SetIsTraining(Bool_t)
when this static function is called, it sets the flag whether events with negative event weight shoul...
void GetMVADists()
fill the private histograms with the mva distributions for sig/bkg
Double_t Run()
estimator function interface for fitting
std::vector< Float_t > fFOMvsIter
std::vector< std::vector< double > > Data
PDF wrapper for histograms; uses user-defined spline interpolation.
TCppMethod_t GetMethod(TCppScope_t scope, TCppIndex_t imeth)
Double_t GetROCIntegral()
calculate the area (integral) under the ROC curve as a overall quality measure of the classification ...
std::map< TString, Double_t > optimize()
The TMVA::Interval Class.
virtual ~OptimizeConfigParameters()
the destructor (delete the OptimizeConfigParameters, store the graph and .. delete it) ...
Double_t GetSigEffAtBkgEff(Double_t bkgEff=0.1)
calculate the signal efficiency for a given background efficiency
Double_t GetVal(Double_t x) const
returns value PDF(x)
TDirectory * BaseDir() const
returns the ROOT directory where info/histograms etc of the corresponding MVA method instance are sto...
Double_t GetBkgEffAtSigEff(Double_t sigEff=0.5)
calculate the background efficiency for a given signal efficiency
THist< 2, double, THistStatContent, THistStatUncertainty > TH2D
ostringstream derivative to redirect and format output
virtual void SetXTitle(const char *title)
virtual Bool_t cd(const char *path=0)
Change current directory to "this" directory.
std::vector< int > GetScanIndices(int val, std::vector< int > base)
helper function to scan through the all the combinations in the parameter space
Double_t GetBkgRejAtSigEff(Double_t sigEff=0.5)
calculate the background rejection for a given signal efficiency
Short_t Max(Short_t a, Short_t b)
A Graph is a graphics object made of two arrays X and Y with npoints each.
Double_t EstimatorFunction(std::vector< Double_t > &)
return the estimator (from current FOM) for the fitting interface
THist< 1, double, THistStatContent, THistStatUncertainty > TH1D
Double_t GetIntegral(Double_t xmin, Double_t xmax)
computes PDF integral within given ranges
Fitter using a Genetic Algorithm.
tomato 2-D histogram with a double per channel (see TH1 documentation)}
TString fOptimizationFitType