Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
tmva103_Application.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_tmva
3/// \notebook -nodraw
4/// This tutorial illustrates how you can conveniently apply BDTs in C++ using
5/// the fast tree inference engine offered by TMVA. Supported workflows are
6/// event-by-event inference, batch inference and pipelines with RDataFrame.
7///
8/// \macro_code
9/// \macro_output
10///
11/// \date December 2018
12/// \author Stefan Wunsch
13
14using namespace TMVA::Experimental;
15
16void tmva103_Application()
17{
18 const char* model_filename = "tmva101.root";
19
20 if (gSystem->AccessPathName(model_filename)) {
21 Info("tmva103_Application.C", "%s does not exist", model_filename);
22 return;
23 }
24
25 // Load BDT model
26 RBDT bdt("myBDT", model_filename);
27
28 // Apply model on a single input
29 auto y1 = bdt.Compute({1.0, 2.0, 3.0, 4.0});
30
31 std::cout << "Apply model on a single input vector: " << y1[0] << std::endl;
32
33 // Apply model on a batch of inputs
34 float data[8] = {1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0};
35 RTensor<float> x(data, {2, 4});
36 auto y2 = bdt.Compute(x);
37
38 std::cout << "Apply model on an input tensor: " << y2 << std::endl;
39
40 // Apply model as part of an RDataFrame workflow
41 ROOT::RDataFrame df("Events", "root://eospublic.cern.ch//eos/root-eos/cms_opendata_2012_nanoaod/SMHiggsToZZTo4L.root");
42 auto df2 = df.Filter("nMuon >= 2")
43 .Filter("nElectron >= 2")
44 .Define("Muon_pt_1", "Muon_pt[0]")
45 .Define("Muon_pt_2", "Muon_pt[1]")
46 .Define("Electron_pt_1", "Electron_pt[0]")
47 .Define("Electron_pt_2", "Electron_pt[1]")
48 .Define("y",
49 Compute<4, float>(bdt),
50 {"Muon_pt_1", "Muon_pt_2", "Electron_pt_1", "Electron_pt_2"});
51
52 std::cout << "Mean response on the signal sample: " << *df2.Mean("y") << std::endl;
53}
void Info(const char *location, const char *msgfmt,...)
Use this function for informational messages.
Definition TError.cxx:218
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void data
Option_t Option_t TPoint TPoint const char y2
Option_t Option_t TPoint TPoint const char y1
R__EXTERN TSystem * gSystem
Definition TSystem.h:561
ROOT's RDataFrame offers a modern, high-level interface for analysis of data stored in TTree ,...
RTensor is a container with contiguous memory and shape information.
Definition RTensor.hxx:162
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:1296
Double_t x[n]
Definition legend1.C:17