Logo ROOT   6.14/05
Reference Guide
TMVARegression.C
Go to the documentation of this file.
1 /// \file
2 /// \ingroup tutorial_tmva
3 /// \notebook -nodraw
4 /// This macro provides examples for the training and testing of the
5 /// TMVA classifiers.
6 ///
7 /// As input data is used a toy-MC sample consisting of four Gaussian-distributed
8 /// and linearly correlated input variables.
9 ///
10 /// The methods to be used can be switched on and off by means of booleans, or
11 /// via the prompt command, for example:
12 ///
13 /// root -l TMVARegression.C\(\"LD,MLP\"\)
14 ///
15 /// (note that the backslashes are mandatory)
16 /// If no method given, a default set is used.
17 ///
18 /// The output file "TMVAReg.root" can be analysed with the use of dedicated
19 /// macros (simply say: root -l <macro.C>), which can be conveniently
20 /// invoked through a GUI that will appear at the end of the run of this macro.
21 /// - Project : TMVA - a Root-integrated toolkit for multivariate data analysis
22 /// - Package : TMVA
23 /// - Root Macro: TMVARegression
24 ///
25 /// \macro_output
26 /// \macro_code
27 /// \author Andreas Hoecker
28 
29 #include <cstdlib>
30 #include <iostream>
31 #include <map>
32 #include <string>
33 
34 #include "TChain.h"
35 #include "TFile.h"
36 #include "TTree.h"
37 #include "TString.h"
38 #include "TObjString.h"
39 #include "TSystem.h"
40 #include "TROOT.h"
41 
42 #include "TMVA/Tools.h"
43 #include "TMVA/Factory.h"
44 #include "TMVA/DataLoader.h"
45 #include "TMVA/TMVARegGui.h"
46 
47 
48 using namespace TMVA;
49 
50 void TMVARegression( TString myMethodList = "" )
51 {
52  // The explicit loading of the shared libTMVA is done in TMVAlogon.C, defined in .rootrc
53  // if you use your private .rootrc, or run from a different directory, please copy the
54  // corresponding lines from .rootrc
55 
56  // methods to be processed can be given as an argument; use format:
57  //
58  // mylinux~> root -l TMVARegression.C\(\"myMethod1,myMethod2,myMethod3\"\)
59  //
60 
61  //---------------------------------------------------------------
62  // This loads the library
64 
65 
66 
67  // Default MVA methods to be trained + tested
68  std::map<std::string,int> Use;
69 
70  // Mutidimensional likelihood and Nearest-Neighbour methods
71  Use["PDERS"] = 0;
72  Use["PDEFoam"] = 1;
73  Use["KNN"] = 1;
74  //
75  // Linear Discriminant Analysis
76  Use["LD"] = 1;
77  //
78  // Function Discriminant analysis
79  Use["FDA_GA"] = 0;
80  Use["FDA_MC"] = 0;
81  Use["FDA_MT"] = 0;
82  Use["FDA_GAMT"] = 0;
83  //
84  // Neural Network
85  Use["MLP"] = 0;
86 #ifdef R__HAS_TMVACPU
87  Use["DNN_CPU"] = 1;
88 #else
89  Use["DNN_CPU"] = 0;
90 #endif
91  //
92  // Support Vector Machine
93  Use["SVM"] = 0;
94  //
95  // Boosted Decision Trees
96  Use["BDT"] = 0;
97  Use["BDTG"] = 1;
98  // ---------------------------------------------------------------
99 
100  std::cout << std::endl;
101  std::cout << "==> Start TMVARegression" << std::endl;
102 
103  // Select methods (don't look at this code - not of interest)
104  if (myMethodList != "") {
105  for (std::map<std::string,int>::iterator it = Use.begin(); it != Use.end(); it++) it->second = 0;
106 
107  std::vector<TString> mlist = gTools().SplitString( myMethodList, ',' );
108  for (UInt_t i=0; i<mlist.size(); i++) {
109  std::string regMethod(mlist[i]);
110 
111  if (Use.find(regMethod) == Use.end()) {
112  std::cout << "Method \"" << regMethod << "\" not known in TMVA under this name. Choose among the following:" << std::endl;
113  for (std::map<std::string,int>::iterator it = Use.begin(); it != Use.end(); it++) std::cout << it->first << " ";
114  std::cout << std::endl;
115  return;
116  }
117  Use[regMethod] = 1;
118  }
119  }
120 
121  // --------------------------------------------------------------------------------------------------
122 
123  // Here the preparation phase begins
124 
125  // Create a new root output file
126  TString outfileName( "TMVAReg.root" );
127  TFile* outputFile = TFile::Open( outfileName, "RECREATE" );
128 
129  // Create the factory object. Later you can choose the methods
130  // whose performance you'd like to investigate. The factory will
131  // then run the performance analysis for you.
132  //
133  // The first argument is the base of the name of all the
134  // weightfiles in the directory weight/
135  //
136  // The second argument is the output file for the training results
137  // All TMVA output can be suppressed by removing the "!" (not) in
138  // front of the "Silent" argument in the option string
139  TMVA::Factory *factory = new TMVA::Factory( "TMVARegression", outputFile,
140  "!V:!Silent:Color:DrawProgressBar:AnalysisType=Regression" );
141 
142 
144  // If you wish to modify default settings
145  // (please check "src/Config.h" to see all available global options)
146  //
147  // (TMVA::gConfig().GetVariablePlotting()).fTimesRMS = 8.0;
148  // (TMVA::gConfig().GetIONames()).fWeightFileDir = "myWeightDirectory";
149 
150  // Define the input variables that shall be used for the MVA training
151  // note that you may also use variable expressions, such as: "3*var1/var2*abs(var3)"
152  // [all types of expressions that can also be parsed by TTree::Draw( "expression" )]
153  dataloader->AddVariable( "var1", "Variable 1", "units", 'F' );
154  dataloader->AddVariable( "var2", "Variable 2", "units", 'F' );
155 
156  // You can add so-called "Spectator variables", which are not used in the MVA training,
157  // but will appear in the final "TestTree" produced by TMVA. This TestTree will contain the
158  // input variables, the response values of all trained MVAs, and the spectator variables
159  dataloader->AddSpectator( "spec1:=var1*2", "Spectator 1", "units", 'F' );
160  dataloader->AddSpectator( "spec2:=var1*3", "Spectator 2", "units", 'F' );
161 
162  // Add the variable carrying the regression target
163  dataloader->AddTarget( "fvalue" );
164 
165  // It is also possible to declare additional targets for multi-dimensional regression, ie:
166  // factory->AddTarget( "fvalue2" );
167  // BUT: this is currently ONLY implemented for MLP
168 
169  // Read training and test data (see TMVAClassification for reading ASCII files)
170  // load the signal and background event samples from ROOT trees
171  TFile *input(0);
172  TString fname = "./tmva_reg_example.root";
173  if (!gSystem->AccessPathName( fname )) {
174  input = TFile::Open( fname ); // check if file in local directory exists
175  }
176  else {
178  input = TFile::Open("http://root.cern.ch/files/tmva_reg_example.root", "CACHEREAD"); // if not: download from ROOT server
179  }
180  if (!input) {
181  std::cout << "ERROR: could not open data file" << std::endl;
182  exit(1);
183  }
184  std::cout << "--- TMVARegression : Using input file: " << input->GetName() << std::endl;
185 
186  // Register the regression tree
187 
188  TTree *regTree = (TTree*)input->Get("TreeR");
189 
190  // global event weights per tree (see below for setting event-wise weights)
191  Double_t regWeight = 1.0;
192 
193  // You can add an arbitrary number of regression trees
194  dataloader->AddRegressionTree( regTree, regWeight );
195 
196  // This would set individual event weights (the variables defined in the
197  // expression need to exist in the original TTree)
198  dataloader->SetWeightExpression( "var1", "Regression" );
199 
200  // Apply additional cuts on the signal and background samples (can be different)
201  TCut mycut = ""; // for example: TCut mycut = "abs(var1)<0.5 && abs(var2-0.5)<1";
202 
203  // tell the DataLoader to use all remaining events in the trees after training for testing:
204  dataloader->PrepareTrainingAndTestTree( mycut,
205  "nTrain_Regression=1000:nTest_Regression=0:SplitMode=Random:NormMode=NumEvents:!V" );
206  //
207  // dataloader->PrepareTrainingAndTestTree( mycut,
208  // "nTrain_Regression=0:nTest_Regression=0:SplitMode=Random:NormMode=NumEvents:!V" );
209 
210  // If no numbers of events are given, half of the events in the tree are used
211  // for training, and the other half for testing:
212  //
213  // dataloader->PrepareTrainingAndTestTree( mycut, "SplitMode=random:!V" );
214 
215  // Book MVA methods
216  //
217  // Please lookup the various method configuration options in the corresponding cxx files, eg:
218  // src/MethoCuts.cxx, etc, or here: http://tmva.sourceforge.net/optionRef.html
219  // it is possible to preset ranges in the option string in which the cut optimisation should be done:
220  // "...:CutRangeMin[2]=-1:CutRangeMax[2]=1"...", where [2] is the third input variable
221 
222  // PDE - RS method
223  if (Use["PDERS"])
224  factory->BookMethod( dataloader, TMVA::Types::kPDERS, "PDERS",
225  "!H:!V:NormTree=T:VolumeRangeMode=Adaptive:KernelEstimator=Gauss:GaussSigma=0.3:NEventsMin=40:NEventsMax=60:VarTransform=None" );
226  // And the options strings for the MinMax and RMS methods, respectively:
227  //
228  // "!H:!V:VolumeRangeMode=MinMax:DeltaFrac=0.2:KernelEstimator=Gauss:GaussSigma=0.3" );
229  // "!H:!V:VolumeRangeMode=RMS:DeltaFrac=3:KernelEstimator=Gauss:GaussSigma=0.3" );
230 
231  if (Use["PDEFoam"])
232  factory->BookMethod( dataloader, TMVA::Types::kPDEFoam, "PDEFoam",
233  "!H:!V:MultiTargetRegression=F:TargetSelection=Mpv:TailCut=0.001:VolFrac=0.0666:nActiveCells=500:nSampl=2000:nBin=5:Compress=T:Kernel=None:Nmin=10:VarTransform=None" );
234 
235  // K-Nearest Neighbour classifier (KNN)
236  if (Use["KNN"])
237  factory->BookMethod( dataloader, TMVA::Types::kKNN, "KNN",
238  "nkNN=20:ScaleFrac=0.8:SigmaFact=1.0:Kernel=Gaus:UseKernel=F:UseWeight=T:!Trim" );
239 
240  // Linear discriminant
241  if (Use["LD"])
242  factory->BookMethod( dataloader, TMVA::Types::kLD, "LD",
243  "!H:!V:VarTransform=None" );
244 
245  // Function discrimination analysis (FDA) -- test of various fitters - the recommended one is Minuit (or GA or SA)
246  if (Use["FDA_MC"])
247  factory->BookMethod( dataloader, TMVA::Types::kFDA, "FDA_MC",
248  "!H:!V:Formula=(0)+(1)*x0+(2)*x1:ParRanges=(-100,100);(-100,100);(-100,100):FitMethod=MC:SampleSize=100000:Sigma=0.1:VarTransform=D" );
249 
250  if (Use["FDA_GA"]) // can also use Simulated Annealing (SA) algorithm (see Cuts_SA options) .. the formula of this example is good for parabolas
251  factory->BookMethod( dataloader, TMVA::Types::kFDA, "FDA_GA",
252  "!H:!V:Formula=(0)+(1)*x0+(2)*x1:ParRanges=(-100,100);(-100,100);(-100,100):FitMethod=GA:PopSize=100:Cycles=3:Steps=30:Trim=True:SaveBestGen=1:VarTransform=Norm" );
253 
254  if (Use["FDA_MT"])
255  factory->BookMethod( dataloader, TMVA::Types::kFDA, "FDA_MT",
256  "!H:!V:Formula=(0)+(1)*x0+(2)*x1:ParRanges=(-100,100);(-100,100);(-100,100);(-10,10):FitMethod=MINUIT:ErrorLevel=1:PrintLevel=-1:FitStrategy=2:UseImprove:UseMinos:SetBatch" );
257 
258  if (Use["FDA_GAMT"])
259  factory->BookMethod( dataloader, TMVA::Types::kFDA, "FDA_GAMT",
260  "!H:!V:Formula=(0)+(1)*x0+(2)*x1:ParRanges=(-100,100);(-100,100);(-100,100):FitMethod=GA:Converger=MINUIT:ErrorLevel=1:PrintLevel=-1:FitStrategy=0:!UseImprove:!UseMinos:SetBatch:Cycles=1:PopSize=5:Steps=5:Trim" );
261 
262  // Neural network (MLP)
263  if (Use["MLP"])
264  factory->BookMethod( dataloader, TMVA::Types::kMLP, "MLP", "!H:!V:VarTransform=Norm:NeuronType=tanh:NCycles=20000:HiddenLayers=N+20:TestRate=6:TrainingMethod=BFGS:Sampling=0.3:SamplingEpoch=0.8:ConvergenceImprove=1e-6:ConvergenceTests=15:!UseRegulator" );
265 
266  if (Use["DNN_CPU"]) {
267  /*
268  TString layoutString ("Layout=TANH|(N+100)*2,LINEAR");
269  TString layoutString ("Layout=SOFTSIGN|100,SOFTSIGN|50,SOFTSIGN|20,LINEAR");
270  TString layoutString ("Layout=RELU|300,RELU|100,RELU|30,RELU|10,LINEAR");
271  TString layoutString ("Layout=SOFTSIGN|50,SOFTSIGN|30,SOFTSIGN|20,SOFTSIGN|10,LINEAR");
272  TString layoutString ("Layout=TANH|50,TANH|30,TANH|20,TANH|10,LINEAR");
273  TString layoutString ("Layout=SOFTSIGN|50,SOFTSIGN|20,LINEAR");
274  TString layoutString ("Layout=TANH|100,TANH|30,LINEAR");
275  */
276  TString layoutString("Layout=TANH|50,Layout=TANH|50,Layout=TANH|50,LINEAR");
277 
278  TString training0("LearningRate=1e-2,Momentum=0.5,Repetitions=1,ConvergenceSteps=20,BatchSize=50,"
279  "TestRepetitions=10,WeightDecay=0.01,Regularization=NONE,DropConfig=0.2+0.2+0.2+0.,"
280  "DropRepetitions=2");
281  TString training1("LearningRate=1e-3,Momentum=0.9,Repetitions=1,ConvergenceSteps=20,BatchSize=50,"
282  "TestRepetitions=5,WeightDecay=0.01,Regularization=L2,DropConfig=0.1+0.1+0.1,DropRepetitions="
283  "1");
284  TString training2("LearningRate=1e-4,Momentum=0.3,Repetitions=1,ConvergenceSteps=10,BatchSize=50,"
285  "TestRepetitions=5,WeightDecay=0.01,Regularization=NONE");
286 
287  TString trainingStrategyString("TrainingStrategy=");
288  trainingStrategyString += training0 + "|" + training1 + "|" + training2;
289 
290  // TString trainingStrategyString
291  // ("TrainingStrategy=LearningRate=1e-1,Momentum=0.3,Repetitions=3,ConvergenceSteps=20,BatchSize=30,TestRepetitions=7,WeightDecay=0.0,L1=false,DropFraction=0.0,DropRepetitions=5");
292 
293  TString nnOptions(
294  "!H:V:ErrorStrategy=SUMOFSQUARES:VarTransform=G:WeightInitialization=XAVIERUNIFORM:Architecture=CPU");
295  // TString nnOptions ("!H:V:VarTransform=Normalize:ErrorStrategy=CHECKGRADIENTS");
296  nnOptions.Append(":");
297  nnOptions.Append(layoutString);
298  nnOptions.Append(":");
299  nnOptions.Append(trainingStrategyString);
300 
301  factory->BookMethod(dataloader, TMVA::Types::kDNN, "DNN_CPU", nnOptions); // NN
302  }
303 
304 
305 
306  // Support Vector Machine
307  if (Use["SVM"])
308  factory->BookMethod( dataloader, TMVA::Types::kSVM, "SVM", "Gamma=0.25:Tol=0.001:VarTransform=Norm" );
309 
310  // Boosted Decision Trees
311  if (Use["BDT"])
312  factory->BookMethod( dataloader, TMVA::Types::kBDT, "BDT",
313  "!H:!V:NTrees=100:MinNodeSize=1.0%:BoostType=AdaBoostR2:SeparationType=RegressionVariance:nCuts=20:PruneMethod=CostComplexity:PruneStrength=30" );
314 
315  if (Use["BDTG"])
316  factory->BookMethod( dataloader, TMVA::Types::kBDT, "BDTG",
317  "!H:!V:NTrees=2000::BoostType=Grad:Shrinkage=0.1:UseBaggedBoost:BaggedSampleFraction=0.5:nCuts=20:MaxDepth=3:MaxDepth=4" );
318  // --------------------------------------------------------------------------------------------------
319 
320  // Now you can tell the factory to train, test, and evaluate the MVAs
321 
322  // Train MVAs using the set of training events
323  factory->TrainAllMethods();
324 
325  // Evaluate all MVAs using the set of test events
326  factory->TestAllMethods();
327 
328  // Evaluate and compare performance of all configured MVAs
329  factory->EvaluateAllMethods();
330 
331  // --------------------------------------------------------------
332 
333  // Save the output
334  outputFile->Close();
335 
336  std::cout << "==> Wrote root file: " << outputFile->GetName() << std::endl;
337  std::cout << "==> TMVARegression is done!" << std::endl;
338 
339  delete factory;
340  delete dataloader;
341 
342  // Launch the GUI for the root macros
343  if (!gROOT->IsBatch()) TMVA::TMVARegGui( outfileName );
344 }
345 
346 int main( int argc, char** argv )
347 {
348  // Select methods (don't look at this code - not of interest)
349  TString methodList;
350  for (int i=1; i<argc; i++) {
351  TString regMethod(argv[i]);
352  if(regMethod=="-b" || regMethod=="--batch") continue;
353  if (!methodList.IsNull()) methodList += TString(",");
354  methodList += regMethod;
355  }
356  TMVARegression(methodList);
357  return 0;
358 }
virtual Bool_t AccessPathName(const char *path, EAccessMode mode=kFileExists)
Returns FALSE if one can access a file using the specified access mode.
Definition: TSystem.cxx:1276
static Tools & Instance()
Definition: Tools.cxx:75
MethodBase * BookMethod(DataLoader *loader, TString theMethodName, TString methodTitle, TString theOption="")
Book a classifier or regression method.
Definition: Factory.cxx:358
static Bool_t SetCacheFileDir(ROOT::Internal::TStringView cacheDir, Bool_t operateDisconnected=kTRUE, Bool_t forceCacheread=kFALSE)
Definition: TFile.h:315
#define gROOT
Definition: TROOT.h:410
void TrainAllMethods()
Iterates through all booked methods and calls training.
Definition: Factory.cxx:1093
void AddVariable(const TString &expression, const TString &title, const TString &unit, char type='F', Double_t min=0, Double_t max=0)
user inserts discriminating variable in data set info
Definition: DataLoader.cxx:491
static TFile * Open(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=1, Int_t netopt=0)
Create / open a file.
Definition: TFile.cxx:3976
int main(int argc, char **argv)
R__EXTERN TSystem * gSystem
Definition: TSystem.h:540
void EvaluateAllMethods(void)
Iterates over all MVAs that have been booked, and calls their evaluation methods. ...
Definition: Factory.cxx:1333
void TestAllMethods()
Evaluates all booked methods on the testing data and adds the output to the Results in the corresponi...
Definition: Factory.cxx:1231
unsigned int UInt_t
Definition: RtypesCore.h:42
void AddRegressionTree(TTree *tree, Double_t weight=1.0, Types::ETreeType treetype=Types::kMaxTreeType)
Definition: DataLoader.h:113
This is the main MVA steering class.
Definition: Factory.h:81
Tools & gTools()
void PrepareTrainingAndTestTree(const TCut &cut, const TString &splitOpt)
prepare the training and test trees -> same cuts for signal and background
Definition: DataLoader.cxx:629
double Double_t
Definition: RtypesCore.h:55
void AddTarget(const TString &expression, const TString &title="", const TString &unit="", Double_t min=0, Double_t max=0)
user inserts target in data set info
Definition: DataLoader.cxx:509
void SetWeightExpression(const TString &variable, const TString &className="")
Definition: DataLoader.cxx:560
Abstract ClassifierFactory template that handles arbitrary types.
std::vector< TString > SplitString(const TString &theOpt, const char separator) const
splits the option string at &#39;separator&#39; and fills the list &#39;splitV&#39; with the primitive strings ...
Definition: Tools.cxx:1211
void TMVARegGui(const char *fName="TMVAReg.root", TString dataset="")
void AddSpectator(const TString &expression, const TString &title="", const TString &unit="", Double_t min=0, Double_t max=0)
user inserts target in data set info
Definition: DataLoader.cxx:521